使用 siunitx 以 SI 单位表示的基本物理常数

使用 siunitx 以 SI 单位表示的基本物理常数

我想用 SI 单位写出玻尔磁子,而不写出 yJ/T 和核磁子(以下代码与siunitx-notation: $\mu_\text{N}\approx \SI{5\times 10^{-27}}{\joule\per\tesla}$),其不存在 SI 前缀。

以下 MWE 提供了正确的工作示例(针对玻尔磁子):

\documentclass{article}
\usepackage{siunitx}
\begin{document}
  Bohr magneton ($\mu_\text{B}\approx \SI{9.27400968}{\yocto\joule\per\tesla}$) and
  nuclear magneton ($\mu_\text{B}\approx {5.05078353\times 10^{-27}}~JT^{-1}$)
\end{document}

我怎样才能以这种 SI 形式写出核磁子?

答案1

siunitxsintax 中你需要写入5.05078353e-27以获得5.05078353\times 10^{-27}

\documentclass{article}
\usepackage{siunitx}
\begin{document}
  Bohr magneton ($\mu_\text{B}\approx \SI{9.27400968}{\yocto\joule\per\tesla}$) and
  nuclear magneton ($\mu_\text{B}\approx \SI{5.05078353e-27}{\joule\per\tesla}$)
\end{document} 

在此处输入图片描述

相关内容