[Tex/LaTex] Palatino text with CMR math in beamer

beamerfontsmath-mode

I've tried so many combinations, but I can't get it to work. I'd appreciate any suggestions.

Best Answer

Use the serif option to set the default family to roman, then set \rmdefault and \mathfamilydefault as you please:

\documentclass[serif]{beamer}

\renewcommand\rmdefault{pplx}
\renewcommand\mathfamilydefault{cmr}

\begin{document}

\begin{frame}{Frametitle}
  Some text\\
  $E=mc^2$
\end{frame}

\end{document}

Note: Next time, please post a minimal working example (MWE) outlining at least one of the 'many combinations' you tried ;-)