[Tex/LaTex] Set Math Font like in Beamer

beamerfontsmath-mode

How can I set the Beamer math font in a non-Beamer class (e.g., article)?

The motivation is that I prepare a poster and a presentation for a workshop which I would like to look as similar as possible, i.e. both should have a "Beamer style".

Best Answer

Given Andrew Cashner's comment, I think you probably just need the sfmath package. For example:

\documentclass{article}
\usepackage{sfmath}
\begin{document}
  \[
  3x^7i + \sqrt{9}{y} = \cos z^4
  \]
\end{document}

beamer-style maths?

Related Question