I need a solution for the following problem: I usually use newtxmath with libertine option to typeset all mathematical expressions. This time I need to typeset one special formula using eulervm, all other formulas should be displayed using newtxmath.
The following MWE shows what I'm trying to do.
\documentclass[a4paper,12pt]{article}
\usepackage{amssymb}
\usepackage{amsmath}
%\usepackage{eulervm}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{libertine}
\usepackage[libertine]{newtxmath}
\begin{document}
newtxmath:
\begin{displaymath}
E = mc^2
\end{displaymath}
eulervm:
\begin{displaymath} % use eulervm font here. exactly this one is needed.
4(\Phi^2x^2-y^2)(\Phi^2y^2-z^2)(\Phi^2z^2-x^2)-(1
\end{displaymath}
newtxmath again:
\begin{displaymath}
\int_{-\infty}^\infty \frac{e^{itx}}{x^2 + 1} \, dx
\end{displaymath}
\end{document}
Is this possible and does anyone know how to do that?

