在 siunitx 中重新定义给定单位

在 siunitx 中重新定义给定单位

我想重新定义 siunitx 中的电子质量单位,使其取代\mathrm{m}_0默认的\mathrm{m}_\mathrm{e}。我该怎么做?

答案1

的定义\electronmass

\DeclareSIUnit{\electronmass}{\text{\ensuremath{m_{\text{e}}}}}

只需改变它。

\documentclass{article}
\usepackage{siunitx}

\DeclareSIUnit{\electronmass}{\text{\ensuremath{m_{0}}}}

\begin{document}
\SI{2}{\electronmass}
\end{document}

在此处输入图片描述

然而,你必须意识到你正在改变一个标准符号。这是不应该做的。

相关内容