多行、多列问题

多行、多列问题

你好,有人能帮我制作这个表格吗?我试过了,但每次我尝试的时候小标题都会飘走。我希望尽快得到它。提前谢谢

答案1

您可以使用 booktabs 包并轻松创建表格,如下所示:

\documentclass{article}
\usepackage{multirow}
\usepackage{booktabs}
\begin{document}
\begin{tabular}{cccccccc}
\toprule
Accident & Ultimate & Reserve & RMSEP & \multicolumn{2}{c}{CoV} &   \multicolumn{2}{c}{Source of Error}\\
year & & & &Ultimate & Reserve& Parameter & Process\\
\midrule
2005 &11,148 &0&&&&&\\
2006 &10,663&15&0&0.00\%&2\%&49\%&51\% \\
2007&10,662&26&1&0.01\%&3\%&34\%&66\%\\
\bottomrule
\end{tabular}
\end{document}

输出: 整洁

相关内容