Subversion Repositories programming

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
436 ira 1
% Ira's First Latex-Beamer Document
2
% Last Modified: 2007-02-06
3
% vim: set ts=4 sts=4 sw=4 textwidth=92:
4
\documentclass{beamer}
5
 
6
\usepackage{beamerthemesplit}
7
 
8
\title{Example Presentation Created with the Beamer Package}
9
\author{Ira W. Snyder}
10
\date{\today}
11
 
12
\begin{document}
13
 
14
\frame{\titlepage}
15
 
16
\section[Outline]{}
17
\frame{\tableofcontents}
18
 
19
\section{Introduction}
20
\subsection{Overview of the Beamer Class}
21
\frame
22
{
23
	\frametitle{Features of the Beamer Class}
24
 
25
	\begin{itemize}
26
	\item<1-> Normal LaTeX class.
27
	\item<2-> Easy overlays.
28
	\item<3-> No external programs needed.
29
	\end{itemize}
30
}
31
 
32
\subsection{Second Section}
33
\frame
34
{
35
	\frametitle{Second Section Frame 1}
36
 
37
	\begin{itemize}
38
		\item<1-> Item 1.
39
		\item<2-> Item 2.
40
		\item<3-> Item 3.
41
		\item<4-> Item 4.
42
	\end{itemize}
43
}
44
 
45
\frame
46
{
47
	\frametitle{Second Section Frame 2}
48
 
49
	\begin{itemize}
50
		\item<1-> Item 1.
51
		\item<2-> Item 2.
52
		\item<3-> Item 3-1.
53
		\item<3-> Item 3-2.
54
		\item<4-> Item 4.
55
	\end{itemize}
56
}
57
 
58
\end{document}
59
 
60