siunitx 中带有显式加号的零指数

siunitx 中带有显式加号的零指数

是否可以使用包在科学计数法中在零指数前面显式地加上 + siunitx?这是我的 MWE:

\documentclass{article}
\usepackage{siunitx}
\sisetup{exponent-product=\cdot,
    retain-explicit-plus,
    retain-zero-exponent}

\begin{document}
\num{1.52e+0}
\end{document}

此代码输出的内容与我用 获得的内容类似,$1.52 \cdot 10^0$但我希望获得与 相同的输出 $1.52 \cdot 10^{+0}$

相关内容