Can this PI symbol be exactly reproduced in Latex? I have tried various math packages like newtx, newpx,stix etc etc, but their PI shape doesn't match with the one i have in the image.
Thank you.
Can this PI symbol be exactly reproduced in Latex? I have tried various math packages like newtx, newpx,stix etc etc, but their PI shape doesn't match with the one i have in the image.
Thank you.
You can load Symbol.ttf in LuaLaTeX 1.12:
\documentclass{article}
\tracinglostchars=2
\usepackage{fontspec}
\DeclareUnicodeEncoding{symbol-mt}{
\EncodingSymbol{\textpi}{"70}
}
\newfontface\pifont{Symbol.ttf}[
Scale=MatchLowercase,
NFSSEncoding=symbol-mt,
Renderer=HarfBuzz]
\begin{document}
{\huge\pifont\textpi}
\end{document}
The XeTeX renderer does not appear to be able to read this font
Is this is the one you expect?
\documentclass{book}
\DeclareFontFamily{U}{mtt}{}
\DeclareFontShape{U}{mtt}{m}{up}{<->psyr}{}
\DeclareSymbolFont{splpi}{U}{mtt}{m}{up}
\SetSymbolFont{splpi}{normal}{U}{mtt}{m}{up}
\DeclareMathSymbol{\pi}{\mathalpha}{splpi}{'160}
\begin{document}
\[
\pi
\]
\end{document}
Output
\pi and \eta 2.
– Steven B. Segletes
Aug 27 '20 at 18:17
\piin latex. It ins't even forcing the font so that link will appear differently to different people depending on the font defaults they have in their browser. Why do you want that exact font??????? if you go into the debugger (F12 in IE and edge) right menu inspect in chrome and firefox, you can check what fonts are being used in your browser but you should make font choices for the whole document not for individual letters. – David Carlisle Mar 31 '20 at 07:53