问题
是否可以排版一个不确定的数字,并在数字和不确定性上添加零?
描述
我得出的结论是不确定性破坏了格式选项,但找不到任何相关信息。我应该使用其他选项吗?或者无法用额外的零来排版不确定性?
我的意思是表格显示的数字6
没有1
非不确定数字所具有的零。
例子
\documentclass{standalone}
\usepackage{siunitx}
\sisetup{
scientific-notation=true,
table-format=1.1(1)e1,
separate-uncertainty,
round-integer-to-decimal,
round-mode = figures
}
\begin{document}
% these two behave the same
\num{1}
\num{1.}
% this one doesn't work
\begin{tabular}{S}
0.006(1) \\% this one has no zeros (nor decimal places)
1\\% this one is ok
1(1)% sames as the first
\end{tabular}
\end{document}