当我使用siunitx
百分比书写时,我遇到了缺少空格的问题。为什么会发生这种情况?在文本中书写百分比的最佳做法是什么?
\documentclass{article}
\usepackage{siunitx}
\begin{document}
Siunix will eat the space after \SI{100}\percent as you can see here.
Using 0 \% of siunitx the space is there.
\end{document}
答案1
如果你使用它,\SI{100}{\percent}
那么一切都会正常进行:
使用{}
来界定参数是首选的 LaTeX 方法。
代码:
\documentclass{article}
\usepackage{siunitx}
\begin{document}
\verb|Siunitx| will eat the space after \SI{100}{\percent} as you can see here.
Using 0 \% of \verb|siunitx| the space is there.
\end{document}