如何使用 siunitx 包获取 deg^-1 符号?

如何使用 siunitx 包获取 deg^-1 符号?

我需要以下符号: 在此处输入图片描述

我尝试过:

\SI[]{5.73}{\per\deg}

但我想要的是负能量!

你能帮助我吗?

答案1

所需的行为是默认行为,但它似乎不适用于\deg。但是,如果您手动声明单元

\DeclareSIUnit{\deg}{deg}

看起来运行良好:

在此处输入图片描述

代码:

\documentclass[12pt]{article}

\usepackage{siunitx}
\DeclareSIUnit{\deg}{deg}% <-- No exponent if this is not inclued

\begin{document}
$\SI{5.73}{\per\deg}$
\end{document}

相关内容