我怎样在 LateX 中制作此表(单列和多列)?

我怎样在 LateX 中制作此表(单列和多列)?

在此处输入图片描述

您能帮我弄清楚如何制作像图中这样的单列表格和多列表格吗?

答案1

希望下面的代码可以满足您的要求:

\documentclass{book}
\usepackage{multirow}
\begin{document}

\begin{tabular}{|c|c|c|c|c|}
\hline
&\multicolumn{3}{c|}{Main} &\multirow{2}{*}{Total}\\
\cline{2-4}
& 1 &2 &3 &\\
\hline
Text2 & & & &\\
\hline
Text3 & & & &\\
\hline
Text4 & & & &\\
\hline
Text5 & & & &\\
\hline
Text6 & & & &\\
\hline
Text7 & & & &\\
\hline
\end{tabular}

\end{document}

相关内容