使用 siunitx 的表格数学模式

使用 siunitx 的表格数学模式

我的文件使用 siunitx 2 (TexLive 2020) 编译,但使用 3 (TexLive 2021) 编译时出错。我在升级部分手册。

梅威瑟:https://www.overleaf.com/read/wmgnzhqhbfpy

\documentclass{article}

\usepackage{siunitx}


\begin{document}

\begin{table}
    \begin{tabular}{ r S[table-format=2.3] }
        \(k\)  &  \(x_1^{(k)}\) \\
    \end{tabular}
\end{table}

\end{document}

答案1

用花括号将非数字但应显示在S类型列中的材料括起来。

因此请使用以下命令(在 v2 和 v3 中均有效):

\documentclass{article}

\usepackage{siunitx}


\begin{document}
\begin{tabular}{ r S[table-format=2.3] }
  \(k\)  &  {\(x_1^{(k)}\)} \\
\end{tabular}
\end{document}

相关内容