Subversion Repositories programming

Rev

Blame | Last modification | View Log | RSS feed

% Ira's First Latex-Beamer Document
% Last Modified: 2007-02-06
% vim: set ts=4 sts=4 sw=4 textwidth=92:
\documentclass{beamer}

\usepackage{beamerthemesplit}

\title{Example Presentation Created with the Beamer Package}
\author{Ira W. Snyder}
\date{\today}

\begin{document}

\frame{\titlepage}

\section[Outline]{}
\frame{\tableofcontents}

\section{Introduction}
\subsection{Overview of the Beamer Class}
\frame
{
        \frametitle{Features of the Beamer Class}

        \begin{itemize}
        \item<1-> Normal LaTeX class.
        \item<2-> Easy overlays.
        \item<3-> No external programs needed.
        \end{itemize}
}

\subsection{Second Section}
\frame
{
        \frametitle{Second Section Frame 1}

        \begin{itemize}
                \item<1-> Item 1.
                \item<2-> Item 2.
                \item<3-> Item 3.
                \item<4-> Item 4.
        \end{itemize}
}

\frame
{
        \frametitle{Second Section Frame 2}

        \begin{itemize}
                \item<1-> Item 1.
                \item<2-> Item 2.
                \item<3-> Item 3-1.
                \item<3-> Item 3-2.
                \item<4-> Item 4.
        \end{itemize}
}

\end{document}