I want to know what the fonts are in this pdf. Which package to use?

Asked
Active
Viewed 266 times
1 Answers
5
The font seems to be Palatino (in one of its many incarnations). On TeX distributions it's available with
\usepackage{mathpazo}
that also has a dedicated math font based on Palatino.

A different realization is with TeX Gyre Pagella
\usepackage{tgpagella}

With XeLaTeX or LuaLaTeX one can use the OpenType version of the latter font:
\usepackage{fontspec}
\setmainfont{TeX Gyre Pagella}
or
\usepackage{unicode-math}
\setmainfont{TeX Gyre Pagella}
\setmathfont{TG Pagella Math}
if you want to use also the companion math font.
egreg
- 1,121,712
\usepackage{mathpazo}– egreg Mar 09 '13 at 14:58xetexorluatexengines (possibly with thefontspecpackage) which let you work with any system font without font-specific packages. – Toscho Mar 09 '13 at 15:44