答案1
确实,正如 @leandriis 在评论中所建议的那样,\multicolumn
这将对您有所帮助。以下是使用该booktabs
包创建美观表格的代码片段:
\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{tabular}{lccccccc}
\toprule
& \multicolumn{3}{c}{\textbf{Ozeki}} & \multicolumn{4}{c}{\textbf{Yokozuna}} \\
\cmidrule(lr){2-4}\cmidrule(lr){5-8}
& I & II & III & I & II & III & IV \\
\midrule
\textbf{Azuma} & & & & & & & \\
\textbf{Santoro} & & & & & & & \\
\textbf{Kenzo} & & & & & & & \\
\bottomrule
\end{tabular}
\end{document}