如何在写作中插入“%”符号?

如何在写作中插入“%”符号?

在句子中写 % 时,它被视为注释。就像我想写这个句子一样这个瓶子已经空了25%。但 texnic 没有在输出中显示剩余的文本。请给我一些建议。问候

答案1

如果你有很多物理量,请使用siunitx包裹:

\documentclass{article}

\usepackage{siunitx}

\begin{document}

\SI{25}{\percent} of this bottle is empty.

\end{document}

输出

相关内容