每行列数不同的表格

每行列数不同的表格

我想创建一个表格,第一行有一列,第二行有四列。我已附上所需表格结构的图像。图像未显示第二行最后一列的垂直线。我需要在最终表格中添加垂直线。以下是来自 wiki Latex Tables 的代码。但是,表格结构并不相同。如何获得所需的表格结构?

\usepackage{multirow}

\begin{tabular}{cc|c|c|c|c|l} \cline{3-6} 

& & \multicolumn{4}{ c| }{Primes} \\ \cline{3-6} 
& & 2 & 3 & 5 & 7 \\ \cline{1-6}
\multicolumn{1}{ |c  }{\multirow{2}{*}{Powers} } & 
\multicolumn{1}{> |c| }{504} & 3 & 2 & 0 & 1 &     \\ \cline{2-6} 
\multicolumn{1}{ |c }{} & 
\multicolumn{1}{ |c| }{540} & 2 & 3 & 1 & 0 &     \\ \cline{1-6} 
\multicolumn{1}{ |c  }{\multirow{2}{*}{Powers}} & 
\multicolumn{1}{ |c| }{gcd} & 2 & 2 & 0 & 0 & min \\ \cline{2-6}
\multicolumn{1}{ |c }{}                        & 
\multicolumn{1}{ |c| }{lcm} & 3 & 3 & 1 & 1 & max \\ \cline{1-6} 
\end{tabular}

在此处输入图片描述

答案1

没有必要那么复杂。试试这个方法:

姆韦

\documentclass{article}
\begin{document}
\begin{tabular}{|l|l|l|l|}\cline{1-1}
    11 \\\hline
    21 & 22 & 23 & 24\\\hline
\end{tabular}
\end{document}

答案2

与。{NiceTabular}nicematrix

\documentclass{article}
\usepackage{nicematrix}
\begin{document}
\begin{NiceTabular}{llll}[hvlines,corners=NE] % NE: north-east
  11 \\
  21 & 22 & 23 & 24\\
\end{NiceTabular}
\end{document}

上述代码的输出

相关内容