Next: article template, Up: Document templates [Contents][Index]
beamer
templateThe beamer
class creates presentation slides. It has a vast
array of features, but here is a basic template:
\documentclass{beamer} \title{Beamer Class template} \author{Alex Author} \date{July 31, 2007} \begin{document} \maketitle % without [fragile], any {verbatim} code gets mysterious errors. \begin{frame}[fragile] \frametitle{First Slide} \begin{verbatim} This is \verbatim! \end{verbatim} \end{frame} \end{document}
One web resource for this: http://robjhyndman.com/hyndsight/beamer/.