I am writing a Beamer presentation using pdfLaTeX for the backend.
I want to use Lato for the text and eulervm for the math font.
However my operator Re is not displayed with the math font in the equations:
I don't think this is a duplicate of that question since I am not using XeTeX.
Regardless, is that expected since I didn't pick a math font that blends beautifully with the text font?
Otherwise, how can I sort this problem? I tried using \usefonttheme{professionalfonts} without effect.
MWE:
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[UKenglish]{babel}
\usepackage[default]{lato}
\usepackage{eulervm}
\usefonttheme[onlymath]{serif}
\DeclareMathOperator{\Rey}{Re}
\begin{document}
\begin{frame}
\begin{block}{In block}
\begin{equation*}
x + y = z
\end{equation*}
\begin{equation*}
\Rey = 1
\end{equation*}
In text \(\Rey = 1\)
\end{block}
\end{frame}
\end{document}


