指定方程中的单位制

指定方程中的单位制

指定哪个的常见方式系统单位(例如 SI、esu、CGS -不是方程式中单位本身(例如 kg、J、K)的表示方法是在方程式右侧的括号内添加系统名称。例如:

enter image description here

在 LaTeX 中是否有标准/推荐的方法来实现这一点?我尝试在 siunitx 中查找并在 Google 上搜索,但找不到任何相关内容...

答案1

我可以建议两种方法:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{align}
\vec{\nabla} \times \vec{B} &= \mu_0\vec{j}          && \textup{(SI units)} \\
\vec{\nabla} \times \vec{B} &= \frac{4\pi}{c}\vec{j} && \textup{(CGS units)}
\end{align}

\begin{alignat}{2}
\vec{\nabla} \times \vec{B} &= \mu_0\vec{j}          &\qquad& \textup{(SI units)} \\
\vec{\nabla} \times \vec{B} &= \frac{4\pi}{c}\vec{j} &&       \textup{(CGS units)}
\end{alignat}

\end{document}

随意选择。

enter image description here

相关内容