[Tex/LaTex] Different style of permille sign

math-modesymbols

Long permille sign

Hi all, I have found a publication using this permille sign with Times New Roman font. I have tried the textcomp \textperthousand and wasysym \permil commands but it does not yield this symbol. This one extends below the character line. Does anyone know of it? Also, I pasted the character into Word and it gives me an ampersand (&) (position 7 on most character maps), with font name as AdvPSMPE7. Any help or tip will be greatly appreciated.

Best Answer

If your main document font is Times Roman or a clone thereof, I would strongly recommend not using the per-thousand symbol you've reproduced in the screenshot: It's too big, it's poorly placed, and it won't mesh visually with the font's per-cent symbol.

Assuming you use a font package that features a \textperthousand macro, just use it.

Here's an example using pdfLaTeX and the newtxtext and newtxmath packages:

enter image description here

\documentclass{article}
\usepackage{newtxtext,newtxmath,amsmath}
\begin{document}
range of $-20.9$\textperthousand\ to $-18.4$\textperthousand

\bigskip
$1\% = 10\text{\textperthousand}$ 
\end{document}

And here's what you'd get using the same in-document code but with LuaLaTeX and the XITS and XITS Math Opentype fonts:

enter image description here

\documentclass{article}
\usepackage[no-math]{fontspec}
\setmainfont{XITS}
\usepackage{unicode-math}
\setmathfont{XITS Math}
\begin{document}
range of $-20.9\textperthousand$ to $-18.4\textperthousand$ 

\bigskip

$1\% = 10\textperthousand$
\end{document}