siunitx 不确定度值具有不同的小数位数和科学计数法

siunitx 不确定度值具有不同的小数位数和科学计数法

我正在使用 siunitx 包在表格中排版数字。由于某些数字的不确定值为 1 或 2,因此我希望不确定值中的小数位数比数字本身中的小数位数多,就像这里一样: siunitx 不确定值 - 小数位数不同(例如 98.5 +/- 0.98 %)

不同之处在于我使用 \num{} 并且我想要科学计数法。

以下是我想做的事情:

\documentclass{article} 
\usepackage[add-decimal-zero, add-integer-zero, separate-uncertainty=true]{siunitx}

\begin{document}
\num[parse-numbers=false]{102.28 \pm 0.095} \\ 
\num[scientific-notation=true]{9.5 \pm 0.16e-4} \\
\num[scientific-notation=true,parse-numbers=false]{9.5 \pm 0.16e-4}
\end{document}

第一行有效,我得到了我想要的小数位数。第二行和第三行无效。我想要的是:(9.5 ± 0.16)x10^-4 有人能解决这个问题吗?

相关内容