答案1
我喜欢这个booktabs
包装。它提供了\midrule
和 ,并且比和 的\cmidrule
空间更大。\hline
\cline
\documentclass{article}
\usepackage{booktabs,siunitx}
\begin{document}
\begin{table}
\centering
\begin{tabular}{@{}rrrr@{}}
\multicolumn{1}{c}{group} & \multicolumn{3}{c}{Parameters} \\
\midrule
& \multicolumn{1}{c}{energy} & \multicolumn{1}{c}{correlation} & \multicolumn{1}{c}{random} \\
\cmidrule{2-4}
2 & 4 & 5 & 4 \\
4 & 5 & 54 & 4 \\
8 & 45 & 4 & 2 \\
\end{tabular}
\caption{description}
\end{table}
\end{document}
答案2
我很欣赏这个siunitx
软件包。它除了提供其他不错的列格式外,还兼容旧的好mdwtab
...
上表使用booktabs
和siunitx
,下表使用mdwtab
和 `siunitx:
\documentclass{article}
\usepackage{booktabs,mdwtab,siunitx}
\begin{document}
\begin{tabular}{ *{4}{S[table-format=2]} }
\toprule
{group} & \multicolumn{3}{c}{Parameters} \\
\midrule
& {energy} & {correlation} & {random} \\
\cmidrule{2-4}
2 & 4 & 5 & 4 \\
4 & 5 & 54 & 4 \\
8 & 45 & 4 & 2 \\
\bottomrule
\end{tabular}
\medskip
\begin{tabular}{| *{4}{S[table-format=2] |} }
\hlx{hv}
\multicolumn{1}{|c}{}
& \multicolumn{3}{c|}{Parameters} \\
\hlx{vhv}
{group} & {energy} & {correlation} & {random} \\
\hlx{vhv}
2 & 4 & 5 & 4 \\
4 & 5 & 54 & 4 \\
8 & 45 & 4 & 2 \\
\hlx{vh}
\end{tabular}
\end{document}