在 Latex 中创建此形式的表格

在 Latex 中创建此形式的表格

我想在 Latex 中创建以下样式的表格。另外,我想确保文本与列和行的中心对齐。在此处输入图片描述

答案1

与。{NiceTabular}nicematrix

\documentclass{article}
\usepackage{nicematrix}

\begin{document}

\begin{NiceTabular}{w{c}{5mm}cccc}[hvlines,corners=NW] % NW = north-west
 & \;\diagbox{A}{B} & \Block{}{C \\ D} & \Block{}{ E \\ F} & \Block{}{ G \\ longer} \\
\Block{4-1}{H1} & I & text 1    &      & text \\
                & J & text 2    &      & text \\
                & K & text      &      & other text \\
                & L & text      &      & text \\
\Block{4-1}{H2} & M & text      & smth & text \\
                & N & text      &      & text \\
                & O & text      &      & text \\
                & P & text text &      & text \\
\end{NiceTabular}

\end{document}

上述代码的输出

相关内容