I use the classic thesis style which uses the Palatino font (TeX Gyre Pagella).
So it uses the companion math font TeX Gyre Pagella Math as well.
My problem with it is, I do not like how the letter "y" looks in the math font.
The curve is rather "v"-shaped and I would prever it to be "u"-shaped which would make the letter look softer.
I tried to change to Asana Math, but there is the same problem.
I also do not like the Euler Math font which does fit with the Palatino font, but has some mathematical features that bother me.
Latin Modern Math looks good by itself but looks odd when used together with the Palatino font.
So I wonder if it is possible to change just the letter y in the math font to make it a bit more rounded?
(I use LuaLatex by the way and unicode-math)
Here is a MWE, that shows the Palatino font together with Latin Modern Math, Pagella Math and Asama Math.
\documentclass{article}
\usepackage{fontspec}
\setmainfont{TeX Gyre Pagella}
\usepackage{amsthm}
\newtheorem{theorem}{Theorem}
\usepackage{unicode-math}
\begin{document}
\setmathfont{Latin Modern Math}
This is just some text to test the font.
$x + y = z^2$
\begin{theorem}
Test $x$ and $y$ blah blah.
\[x + y = z^2\]
\end{theorem}
\begin{proof}
$x + y = z^2$
\end{proof}
\section{Test}
test test test.
\setmathfont{Asana Math}
This is just some text to test the font.
$x + y = z^2$
\begin{theorem}
Test $x$ and $y$ blah blah.
\[x + y = z^2\]
\end{theorem}
\begin{proof}
$x + y = z^2$
\end{proof}
\section{Test}
test test test.
\setmathfont{TeX Gyre Pagella Math}
This is just some text to test the font.
$x + y = z^2$
\begin{theorem}
Test $x$ and $y$ blah blah.
\[x + y = z^2\]
\end{theorem}
\begin{proof}
$x + y = z^2$
\end{proof}
\section{Test}
test test test.
\end{document}

mtpro2family...Also, it is helpful if you provide aMWEfor further checking purpose... – MadyYuvi Mar 03 '20 at 11:51