In LaTeX Beamer there is the frame environment that can be used to put certain information on a slide. I want to create an outline document where the frame environment is replaced by something else.
I tried doing so by defining new commands \newcommand{\beginframe}{\begin{frame}} and \newcommand{\endframe}{\end{frame}} however I get errors that suggest that you cannot put environment commands in new commands.
Can I abstract away the frame environment in such a way, that I can just remove the environment?
I would prefer not to use \newtheorem{frame} to have lots of frame environments then that are possibly numbered.
beamerarticlecan help you. Look at my answer to What is the document class / package of this pdf file? – Ignasi Feb 13 '12 at 22:17beamerarticledoesn't like beamer colors (look here). Beamer manual section 'Compatibility with other packages and classes' explain how to usecolorandxcolor. – Ignasi Feb 16 '12 at 16:29