答案1
答案2
以下是使用优秀包的解决方案tabularray
。X
, Y
,Z
表示最后三行。
\documentclass{standalone}
\usepackage{tabularray}
\begin{document}
\begin{tblr}{
colspec={|c|c|c|},
vlines={Z}{dashed},
hline{1-Y},
}
1&1&0 \\
0&1&1 \\
&&
\end{tblr}
\end{document}
更紧凑的版本:
\documentclass{standalone}
\usepackage{tabularray}
\begin{document}
\begin{tblr}{
colspec={ccc},
% spec of the lines 1 to Y
rowsep=1pt,
hline{1-Y},
vlines={1-Y}{solid},
% spec of the last (Z) line
vlines={Z}{dashed},
row{Z}={abovesep=0pt,belowsep=0pt},
}
1&1&0 \\
0&1&1 \\
&&
\end{tblr}
\end{document}
答案3
\omit
TeX 基元省略了表中给定项(即\halign
基元中)中声明的表掩码。您的示例可能如下所示:
\begin{array}{|c|c|c|}
\hline
1&1&O \\
\hline
\omit&\omit\hfil\vdots\hfil&\omit
\end{array}
答案4
这是一个基于\mathclap 的垂直等效项?。我不完全理解这个问题,所以我很确定你对此不是 100% 满意 :)。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{array}{|c|c|c|}
\hline
1 & 1 & 0 \\\hline
&\smash[t]{\vdots}&
\end{array}
\end{equation}
\end{document}