创建具有超级列和行的表

创建具有超级列和行的表

经过多次尝试,我似乎无法实现下图所示的表格。该图展示了我希望实现的格式,我最终会为其添加更多列和行。如果有人能为我指明正确的方向,我将不胜感激!

在此处输入图片描述

答案1

享受(尽管所有这些规则看起来不太好):

\documentclass[]{article}

\newcommand\mc{\multicolumn}

\begin{document}
\begin{tabular}[]{|ll|*6{c|}}
  \cline{3-8}
  \mc{1}{l}{}&&\mc{3}{|c|}{Col 1}&\mc{3}{c|}{Col 2}\\
  \cline{3-8}
  \mc{1}{l}{}&& \mc{1}{c}{C} & \mc{1}{c}{NC} & \mc{1}{c|}{SR} 
              & \mc{1}{c}{C} & \mc{1}{c}{NC} & \mc{1}{c|}{SR} \\
  \hline
    & Ex 1 &&&&&&\\
  \cline{3-8}
  Row 1& Ex 2 &&&&&&\\
  \cline{3-8}
    & Ex 3 &&&&&&\\
  \hline
    & Ex 1 &&&&&&\\
  \cline{3-8}
  Row 2& Ex 2 &&&&&&\\
  \cline{3-8}
    & Ex 3 &&&&&&\\
  \hline
    & Ex 1 &&&&&&\\
  \cline{3-8}
  Row 3& Ex 2 &&&&&&\\
  \cline{3-8}
    & Ex 3 &&&&&&\\
  \hline
\end{tabular}
\end{document}

在此处输入图片描述

相关内容