3

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

Mico
  • 506,678
Lijie Xu
  • 1,427
  • 3
    It's Palatino: \usepackage{mathpazo} – egreg Mar 09 '13 at 14:58
  • 1
    Use the pdffonts command on linux to find out what fonts are in a document. –  Mar 09 '13 at 16:14
  • Or use xetex or luatex engines (possibly with the fontspec package) which let you work with any system font without font-specific packages. – Toscho Mar 09 '13 at 15:44

1 Answers1

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.

enter image description here

A different realization is with TeX Gyre Pagella

\usepackage{tgpagella}

enter image description here


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