4

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".

cfr
  • 198,882
gTcV
  • 1,065

2 Answers2

6

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?

cfr
  • 198,882
3

Three choices with “real” sans serif math fonts.

Option 1, Arev fonts

\documentclass{article}
\usepackage{arevmath,arevtext}
\begin{document}
Some text before the display
\[
3x^7i + \sqrt{9}{y} = \cos z^4
\]
and after.
\end{document}

enter image description here

Option 2, Helvetica

\documentclass{article}
\usepackage[scale=.85]{tgheros}
\usepackage{newtxsf}
\renewcommand{\familydefault}{\sfdefault}
\DeclareSymbolFont{operators}{OT1}{\sfdefault}{m}{n}
\SetSymbolFont{operators}{bold}{OT1}{\sfdefault}{b}{n}
\begin{document}
Some text before the display $y$
\[
3x^7i + \sqrt{9}{y} = \cos z^4
\]
and after.
\end{document}

enter image description here

Option 3, Iwona

\documentclass{article}
\usepackage[math]{iwona}
\begin{document}
Some text before the display $y$
\[
3x^7i + \sqrt{9}{y} = \cos z^4
\]
and after.
\end{document}

enter image description here

egreg
  • 1,121,712