\begin{table}
\begin{tabular}{r@{$\pm$}l}
% two columns, a \pm between each two
4 & 5 \\
2 & 3 \\
% ... after n row, I want to have two regular columns WITHOUT \pm
Text & Other text \\ %no need to \pm here
\end{tabular}
\end{table}
\begin{itemize}
参见上文。基本上,我想在一定数量的行之后重置规范r$\pm$l
(或仅将其应用于这些行)。有什么简单的方法可以实现这一点吗?
答案1
最简单的方法是使用分隔符
@{\mysep}
和
\gdef\mysep{$\pm$}
在桌子前
\gdef\mysep{\phantom{$\pm$}}
在您想要改变的时候。
(由于没有提供测试文档,因此未经测试)