我正在寻找一种仅在特定情况下在表格中插入垂直线的方法。
下面的代码和图片显示了我能实现的效果。
但我不希望垂直线靠近数字。我希望它们处于预期的位置:就像靠近数字 10 的那个一样,应该位于 13 和 10 之间的中间。
我希望我已经明确表达了我的目的。
\begin{table}[ht]
\centering
\begin{tabular}{ c c c c c c }
\hline
\vline 9 & 0 & 13 & \vline 10 & 6 & 11 \vline \\
\hline
\vline 0 & \vline 15 & 20 & 21 & \vline 22 & 25 \vline \\
\hline
\end{tabular}
\end{table}
答案1
标准方法是不使用 vline,而是
\multicolumn{1}{c|}{13}
c|
为该单元格使用一列。