[Tex/LaTex] Beamer and isomath

beamerfontsisomath

I would like to use the package isomath (to force slanted capital Greek letters in mathmode) in beamer slides.

Beamer replaces the standard mathmode font with a sans-serif one. However, when using isomath with it, the slanted capital Greek letters appear with the same Serif font used in normal TeX documents. How can I obtain slanted sans-serif capital Greek letters that match the rest of the mathmode font used in Beamer?

MWE:

\documentclass{beamer}
\usepackage{isomath}
\begin{document}
\begin{frame}
I like $\Pi$
\end{frame}
\end{document}

Result:

enter image description here

The \Pi here is rendered using a serif font that does not match the rest of the document.

Best Answer

Try with OMLmaths* option.

\documentclass{beamer}
\usepackage[OMLmaths*]{isomath}
\begin{document}
\begin{frame}
I like $\mathsf{\Pi}$ and $\mathit{\Pi}$
\end{frame}
\end{document}
Related Question