[Tex/LaTex] Change font used by moderncv

fontsmathpazomoderncv

Using moderncv, is it possible to change the font? I tried to load the Palatino font with:

\usepackage{mathpazo}

with no avail.

I'm using Tex Live 2011, and I compile the tex file with pdflatex.

Best Answer

Pass the roman option to moderncv:

\documentclass[roman]{moderncv}
\usepackage{mathpazo}

In this way only the titles will be in a sans serif font. If you want everything in Palatino,

\documentclass{moderncv}
\usepackage{mathpazo}
\renewcommand{\sfdefault}{\rmdefault}