我可以对不同的行使用不同的 siunitx“S”表格式吗?

我可以对不同的行使用不同的 siunitx“S”表格式吗?

在此表中,我想1.2+-1.2对除一行之外的所有行使用对齐。如何使第四行与其他行在加减符号处对齐,但忽略小数点?

尝试使用类似的格式将第四行对齐,2.2+-2.2只会产生太多空间。

在此处输入图片描述

\documentclass{memoir}
\usepackage[separate-uncertainty=true]{siunitx}
\begin{document}
\begin{tabular}{l*{3}{S[table-format=2.2+-2.2]}}
  one row & 1.7(8) & 2.1(11) & 1.9(08) \\
  another row & 1.1(7) & 1.1(07) & 1.2(06) \\
  a third row & 1.4(7) & 1.9(09) & 1.4(07) \\
  a special fourth row & 56(12) & 10(9) & 53(23) \\
  and number five & 0.85(08) & 0.84(0.10) & 0.85(0.08) \\
  and number six & 0.85(08) & 0.84(0.10) & 0.85(0.08) \\
\end{tabular}
\end{document}

答案1

\tablenum解决了这个问题。它需要包装在多列中才能工作,此外,您还需要选择位数,以便加减符号与其他行对齐。

\documentclass{memoir}
\usepackage[separate-uncertainty=true]{siunitx}
\begin{document}
\begin{tabular}{l*{3}{S[table-format=1.2+-1.2]}}
  one row & 1.7(8) & 2.1(11) & 1.9(08) \\
  another row & 1.1(7) & 1.1(07) & 1.2(06) \\
  a third row & 1.4(7) & 1.9(09) & 1.4(07) \\
  a special fourth row
    & \multicolumn{1}{c}{\tablenum[table-format=2+-2]{56(12)}}
    & \multicolumn{1}{c}{\tablenum[table-format=2+-2]{10(9)}}
    & \multicolumn{1}{c}{\tablenum[table-format=2+-2]{53(23)}} \\
  and number five & 0.85(08) & 0.84(0.10) & 0.85(0.08) \\
  and number six & 0.85(08) & 0.84(0.10) & 0.85(0.08) \\
\end{tabular}
\end{document}

在此处输入图片描述

相关内容