多行表帮助

多行表帮助

我正在尝试在 Latex 中构建这样的表格,但我对这个程序还不熟悉,尽管我读过很多博客,但我不明白如何构建这样的表格,提前感谢您的时间

在此处输入图片描述

答案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}

答案2

有了{NiceTabular}nicematrix就简单了。

\documentclass{article}
\usepackage{nicematrix}

\begin{document}
\begin{NiceTabular}{*{6}{l}}[hvlines]
    &   & aaaa & bbbb & cccc & dddd \\
\Block{3-1}{LR}
    & 1 \\
    & 2 \\
    & 2 \\
\Block{3-1}{SV}
    & 1 \\
    & 2 \\
    & 2 \\
\end{NiceTabular}
\end{document}

上述代码的输出

相关内容