siunitx 显示错误的整数不确定值

siunitx 显示错误的整数不确定值

使用该包时,我得到的整数值显示的不确定性不正确siunitx。它似乎插入了一位小数,并将我指定的不确定性除以 10。

这是升级到2014-09-29软件包版本后出现的新问题。

在此处输入图片描述

\documentclass{article}

\usepackage{siunitx} 
\sisetup{separate-uncertainty = true} % use +/- symbol for uncertainty values

\begin{document}

Using integers, 

\verb+\num{30 \pm 2}+ gives \num{30 \pm 2}

but I want the value to appear as \num{30} 

and the uncertainty should be \num{\pm 2} with no decimal parts.

Same problem happens using \verb+\SI+ and in tables using S-columns.

Things seem to work fine if the base value is not an integer:

\verb+\num{30.5 \pm 2}+ gives \num{30.5 \pm 2}

\end{document}

答案1

尝试一下:

\num{30(2)}

如果我仅改变命令中的不确定性,这对我有用\num

相关内容