谁能帮我画这张表格?

谁能帮我画这张表格?

我想在 LaTeX 中绘制下表。但我发现这相当困难,尤其是表头,其中包含一些非垂直线。有人能帮我吗?非常感谢。

在此处输入图片描述

答案1

您没有显示任何 MWE,因此不清楚您(想要)使用哪些包,但使用该nicematrix包您可以执行以下操作:

\documentclass[border=10pt]{standalone}
\usepackage{nicematrix, tikz}

\begin{document}
\begin{NiceTabular}[hvlines]{ *{7}{ w{c}{1cm} } }
\Block[name=dd]{2-1}{} & \Block{1-3}{AAA} & & & \Block{1-3}{BBB} & & \\
  & X & Y & Z & X & Y & Z \\
  &   &   &   &   &   &   \\
  &   &   &   &   &   &   \\
\CodeAfter
\tikz{
    \draw (1 -| 1) -- (2 -| 2) (1 -| 1) -- (3 -| 2);
    \node[anchor=east] at ([yshift=7pt]dd.east) {\footnotesize U};
    \node[anchor=east] at ([yshift=-4pt]dd.east) {\footnotesize V};
    \node[anchor=south] at ([xshift=-5pt]dd.south) {\footnotesize W};
}
\end{NiceTabular}
\end{document}

在此处输入图片描述

相关内容