我想在 latex 中写入百分位数 (‰) 符号。我试过 \‰ 但不行
答案1
我找到了一个很好的答案这一页:
\textperthousand
从包中textcomp
,也提供了\textpertenthousand
但都只能在文本模式下工作,而不能在数学模式下工作。\permil
从包中wasysym
,可以在文本模式和数学模式下工作。
例如:
\documentclass[]{article}
\usepackage{textcomp}
\usepackage{wasysym}
\begin{document}
Let's try different per milles:
\textperthousand \ (textcomp package in text mode)
\permil \ (wasysym package in text mode)
$\frac{1}{7}\permil$ (wasysym package in math mode)\\
\textpertenthousand (extra bonus)
\end{document}