I use the "slides" class to get full size equations for a presentation. (Yes, it needs to be in Powerpoint ;) )
However, I want to have the standard math font (like in the article class). There seems to be no option like serif for the beamer class. The reason, I'm not using the beamer class is that I get a "picture" just the size of my equation in Powerpoint with the slides class. With beamer or article, I get a bigger "picture" with a lot of white space around my equation.
Minimum example:
\documentclass{slides}\pagestyle{empty}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\Omega
\end{equation*}
\end{document}


standaloneclass instead ofslides. – jub0bs Dec 09 '13 at 20:44