如何在 LaTeX(siunitx)中写入单位 Einstein?

如何在 LaTeX(siunitx)中写入单位 Einstein?

我目前正在用 LaTeX 撰写我的硕士论文,大多数事情都进展得非常好,比用 Word 要好得多,但我似乎无法让这个工作。我想要的是:

60 yE/m2s (I hope you know what I mean...)

这是我迄今为止尝试过的:

\SI{60}{\micro\einstein\per\meter\squared\second}

我正确安装了该包,因为它可以与其他单元一起正常工作,例如:

\SI{20}{\degreeCelsius}

答案1

爱因斯坦不是 中默认可用的单位siunitx,但你可以声明一个新单位。

还要注意,除非您已设置,否则您需要\per分母中每个单位的sticky-per=true

在此处输入图片描述

\documentclass{article}
\usepackage{siunitx}
\DeclareSIUnit{\einstein}{E}
\begin{document}

\SI{60}{\micro\einstein\per\meter\squared\per\second}

\sisetup{sticky-per=true} %add to preamble for global setting

\SI{60}{\micro\einstein\per\meter\squared\second}
\end{document}

相关内容