在 LATEX 中制作表格,使不同的行位于不同的列中

在 LATEX 中制作表格,使不同的行位于不同的列中

在此处输入图片描述

我希望使用乳胶代码来获得该表。

答案1

这是你想要的吗?

\documentclass[a4paper,12pt]{report}
\usepackage[inner=0.75in,outer=0.65in,top=0.75in,bottom=0.75in]{geometry}
\usepackage[sc]{mathpazo}
\usepackage{multirow}

\begin{document}
\begin{tabular}{|p{2cm} | c| c| c|}
\hline 
\multirow{2}{*}{more text} & \multicolumn{3}{|c|}{} \\
\cline{2-4} 
 &   text & text& text \\
\hline
text  & text & text& text \\
\hline
 text & text & text& text \\
\hline
 text & text & text& text \\
\hline
 text & text & text& text \\
\hline
 text & text & text& text \\
\hline
\end{tabular}
\end{document}

您没有指定有关单元格内文本对齐的任何内容,因此我仅采用了最简单的解决方案。

http://i.imgur.com/U4m8Um1.png?1

相关内容