答案1
你的问题肯定是重复的……但现在我懒得在这里找同样的问题 ;-)。因此,使用multirow
包的一个示例是:
\documentclass{article}
\usepackage{multirow}
\begin{document}
\begin{tabular}{|*{6}{l|} }
\hline
& & aaaa & bbbb & cccc & dddd \\
\hline
\multirow{3}{*}{LR}
& 1 & & & & \\ \cline{2-6}
& 2 & & & & \\ \cline{2-6}
& 2 & & & & \\
\hline
\multirow{3}{*}{SV}
& 1 & & & & \\ \cline{2-6}
& 2 & & & & \\ \cline{2-6}
& 2 & & & & \\
\hline
\end{tabular}
\end{document}