I am working on a long presentation using beamer. One thing I like to use is the theorem environment to highlight something. For example, if I want to generate something like:
Beamer
Best Presentation Package
I will use the following:
Code: Select all
\newtheorem{beamer_best}{Beamer}
\begin{beamer_best}
Best Presentation Package
\end{beamer_best}
Can anyone give a hint of how to do this more efficiently? For example, if I could pass an argument like in \newcommand, then I do not need to redefine a new environment every time.
Thanks.