如何在乳胶中写百分位数符号?

如何在乳胶中写百分位数符号?

我想在 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}

在此处输入图片描述

答案2

ConTeXt 用户可以使用以下方法之一。该\unit方法与数字结合使用时效果最佳,因为它会在两者之间添加一个小空格。

\starttext

1\,‰ \quad 1\,\perthousand \quad \unit{1 permille}

\stoptext

在此处输入图片描述

相关内容