答案1
我将给出一个tblr
环境的替代解决方案tabularray
包。首先,它可以制作一个正确的跨两列的多列单元格X
。其次,通过使用\SetCell
命令,我们不需要担心单元格边框。
\documentclass{article}
\usepackage{tabularray}
\begin{document}
\noindent
\begin{tblr}{@{}|t{3.5cm}|X|X|}
some text & \SetCell[c=2]{c} some text & \\
\end{tblr}
\end{document}
答案2
{NiceTabular}
以下是使用 的替代方案nicematrix
。在该环境中,该命令\Block
会垂直和水平合并单元格,并且规则(例如|
在序言中指定的)是不是在块中绘制。
\documentclass{article}
\usepackage{nicematrix}
\begin{document}
\noindent
\begin{NiceTabular}{|p{3.5cm}|X|X|}
some text & \Block{1-2}{some text} & \\
\end{NiceTabular}
\end{document}
您需要多次编译(因为nicematrix
在后台使用 PGF/Tikz 节点)。