LaTeX 处理三线表相当简单方便。用到的宏包主要是 booktabs 。代码如下:
需要添加包:usepackage{booktabs}。
documentclass{article}
usepackage{booktabs} egin{document}
egin{table}[!t] caption{relative implement time of the three methods}
label{table_time}
egin{tabular}{lllllll}
oprule
A & N=3 &N=5 & N=7 & N=9 & N=11 & N=13\
midrule
B & 1.5789 & 1.3478 &1.0645&0.8780 &0.7222 &0.5942 \
C & 1.0000 &1.0000 &1.0000 &1.0000 &1.0000 &1.0000 \
D &7.2632 &14.3913 &21.0323 &27.3171 &30.9630 &34.0870 \
ottomrule
end{tabular}
end{table}
end{document}
注意事项:
egin{tabular}{lllllll} ,这句话的大括号中写几个l,当然也可以写c,或者r,分别代表左中右
效果如下:
参考文献: