我如何创建如下所示的表格:我不知道如何让 A 和 B 位于四行的中间?
答案1
怎么样:
\usepackage{multirow}
\begin{document}
\begin{table}[h]
\begin{tabular}{|l|l|l|l|l|}
\hline
X & xx & x & x & x \\ \hline
\multirow{4}{*}{A} & x & x & x & x \\ \cline{2-5}
& x & x & x & x \\ \cline{2-5}
& x & x & x & x \\ \cline{2-5}
& x & x & x & x \\ \hline
\multirow{4}{*}{B} & x & x & x & x \\ \cline{2-5}
& x & x & x & x \\ \cline{2-5}
& x & x & x & x \\ \cline{2-5}
& x & x & x & x \\ \hline
\end{tabular}
\end{table}
\end{document}
编辑:如果你不喜欢这些台词:
\begin{table}[h]
\begin{tabular}{lllll}
X & xx & x & x & x \\ \hline
\multirow{4}{*}{A} & x & x & x & x \\
& x & x & x & x \\
& x & x & x & x \\
& x & x & x & x \\[1ex]
\multirow{4}{*}{B} & x & x & x & x \\
& x & x & x & x \\
& x & x & x & x \\
& x & x & x & x
\end{tabular}
\end{table}