I'm trying to get the calligraphic capital "E". I really like mathpazo package but I'd like to change the way it renders calligraphic "E".
Below is a picture: when I type and compile $\mathcal{E}$ I get center version E, instead I'd like the left-most E.

When I didn't have mathpazo, I solved this problem by loading package mathalpha. I have posted below a MWE (also see this old question of mine):
\documentclass[a4paper, 12pt]{scrartcl}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
%\usepackage[cm]{fullpage}
%\usepackage[top=2cm, bottom=3cm, right=2cm, left=3cm]{geometry}
\usepackage[math]{blindtext}
\usepackage[italian]{babel}
\usepackage{amsmath, amsfonts, amssymb}
\usepackage{empheq}
\usepackage{xfrac}
%\usepackage{mathpazo}
\usepackage[cal=boondoxo, calscaled=.98]{mathalfa}
\newcommand{\derivataparziale}[3]{\dfrac{\partial^{#1}{#2}}{\partial {#3}^{#1}} }
\begin{document}
$\mathcal{E}(y) = - \derivataparziale{}{V(y)}{y}$
\end{document}

tlmgr --gui(under Linux)-- the only package I searched out is calledboondox. When I compile I get an error that says: "Package textcomp Error: Symbol \textuparrow not provided by (textcomp) font family ppl in TS1 encoding. (textcomp) Default family used instead." – WobblyWindows Apr 19 '14 at 14:35