[Tex/LaTex] Palatino Linotype font

fontsmath-modepreamble

The font family attached below is the Platino Linotype font (name from 'MS Word') italicized. Which latex command can be used to automatically generates the font family in math mode throughout the document? Thank you in advance.Linotype font family (italicized)

Best Answer

First solution: mathpazo (for pdflatex)

\documentclass{article}
\usepackage{mathpazo}

\begin{document}

Text and math $ax+by+c$

\end{document}

enter image description here

Second solution: newPX (for pdflatex)

\documentclass{article}
\usepackage{newpxtext,newpxmath}

\begin{document}

Text and math $ax+by+c$

\end{document}

enter image description here

Third solution: mathpazo (for xelatex or lualatex)

\documentclass{article}
\usepackage{mathpazo}
\usepackage{fontspec}

\setmainfont{TeX Gyre Pagella}

\begin{document}

Text and math $ax+by+c$

\end{document}

enter image description here

Fourth solution: newPX (for xelatex or lualatex)

\documentclass{article}
\usepackage{newpxmath}
\usepackage{fontspec}

\setmainfont{TeX Gyre Pagella}

\begin{document}

Text and math $ax+by+c$

\end{document}

enter image description here

Fifth solution: Pagella Math (for xelatex or lualatex)

\documentclass{article}
\usepackage{unicode-math}

\setmainfont{TeX Gyre Pagella}
\setmathfont{TeX Gyre Pagella Math}

\begin{document}

Text and math $ax+by+c$

\end{document}

enter image description here

Sixth solution: Asana (for xelatex or lualatex)

\documentclass{article}
\usepackage{unicode-math}

\setmainfont{TeX Gyre Pagella}
\setmathfont{Asana Math}

\begin{document}

Text and math $ax+by+c$

\end{document}

enter image description here

Comments

In solutions 3 to 6, the text font can be any OpenType/TrueType version of Palatino you have available, instead of TeX Gyre Pagella.

Related Question