SIunitx 中的千分比符号

SIunitx 中的千分比符号

有一个上一个关于 latex 中千分率符号的问题。我想知道它是否在西尼特克斯包裹。

答案1

我认为是最新的 siunitx 手册。这里 percent 一词只出现了五次,我找不到 permille 或类似的东西。可以找到一个可能的答案这里也就是说,你可以在序言中放入以下声明

\DeclareSIUnit\permille{\text{\textperthousand}}

然后将其用作\percent的宏siunitx

\documentclass{article}

\usepackage{textcomp} % to use \textperthousand                                                     
\usepackage{siunitx}  
\DeclareSIUnit\permille{\text{\textperthousand}}

\begin{document}      
In normal text        
\SI{10}{\permille}    
is the same as        
\SI{1}{\percent}.     

Also in               
\textit{italic        
\SI{10}{\permille}    
is the same as        
\SI{1}{\percent}      
}                     
\end{document}

在此处输入图片描述

相关内容