[Tex/LaTex] Using Palatino and Euler Math

fontspreamble

I'm using Palatino font for my thesis calling in the preamble

\usepackage[sc]{mathpazo}
\linespread{1.05}  

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,italian]{babel}

To use eulervm which is the correct way to call it? Before fontenc or after?

Best Answer

By loading only palatino you lose the true small caps font provided by mathpazo and also the possibility of using old style figures.

So

\usepackage{mathpazo} % add possibly `sc` and `osf` options
\usepackage{eulervm}

is the best option.