如何将指数“E”与上标数字一起使用?

如何将指数“E”与上标数字一起使用?

使用siunitx我想改变指数标记E但保持上标中的指数数字

\documentclass{standalone}
\usepackage{siunitx}
\sisetup{
    output-exponent-marker={\,\mathrm{E}},
}
\begin{document}
    \num{1e2} % Outputs 1E2 instead of 1E^2
\end{document}

答案1

您可以不使用,而保留“1 x 10²”形式,但使用和output-exponent-marker用空格和“E”替换乘积符号和指数底数。exponent-productexponent-base

\documentclass{article}
\usepackage{siunitx}
\sisetup{
    exponent-product={\,},
    exponent-base={\mathrm{E}},
}
\begin{document}
    \num{1e2}
\end{document}

相关内容