~ubuntu-branches/ubuntu/oneiric/latex-beamer/oneiric

« back to all changes in this revision

Viewing changes to examples/beamerexample3.tex

  • Committer: Bazaar Package Importer
  • Author(s): OHURA Makoto
  • Date: 2004-04-21 00:29:41 UTC
  • Revision ID: james.westby@ubuntu.com-20040421002941-j2xutniwduvqfe92
Tags: upstream-2.20
Import upstream version 2.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
\documentclass{beamer}
 
2
 
 
3
% Copyright 2003 by Till Tantau <tantau@cs.tu-berlin.de>.
 
4
%
 
5
% This program can be redistributed and/or modified under the terms
 
6
% of the LaTeX Project Public License Distributed from CTAN
 
7
% archives in directory macros/latex/base/lppl.txt.
 
8
 
 
9
%
 
10
% The purpose of this example is to show how \part can be used to
 
11
% organize a lecture.
 
12
%
 
13
 
 
14
\usepackage{beamerthemesplit}
 
15
\usepackage[english]{babel}
 
16
\usepackage[latin1]{inputenc}
 
17
 
 
18
% Use some nice templates
 
19
 
 
20
\beamertemplateshadingbackground{red!10}{structure!10}
 
21
\beamertemplatetransparentcovereddynamic
 
22
\beamertemplateballitem
 
23
\beamertemplatenumberedballsectiontoc
 
24
 
 
25
%
 
26
% The following info should normally be given in you main file:
 
27
%
 
28
 
 
29
 
 
30
\title{Beamer Example on Parts}
 
31
\author{Till~Tantau}
 
32
\institute{
 
33
  Fakult�t f�r Elektrotechnik und Informatik\\
 
34
  Technical University of Berlin}
 
35
 
 
36
 
 
37
\begin{document}
 
38
 
 
39
 
 
40
\frame{\titlepage}
 
41
 
 
42
 
 
43
\section*{Outlines}
 
44
 
 
45
\subsection{Part I: Review of Previous Lecture}
 
46
 
 
47
\frame{
 
48
  \nameslide{outline}
 
49
  \frametitle{Outline of Part I}
 
50
  \tableofcontents[pausesections,part=1]
 
51
}
 
52
 
 
53
 
 
54
\subsection{Part II: Today's Lecture}
 
55
 
 
56
\frame{
 
57
  \frametitle{Outline of Part II}
 
58
  \tableofcontents[pausesections,part=2]
 
59
  \note{At most 1 minute for the outline.}
 
60
}
 
61
 
 
62
 
 
63
 
 
64
\part{Review of Previous Lecture}
 
65
 
 
66
\frame{\partpage}
 
67
 
 
68
 
 
69
\section[Previous Lecture]{Summary of the Previous Lecture}
 
70
 
 
71
 
 
72
\subsection{Topics}
 
73
 
 
74
\frame{
 
75
  \frametitle{This frame shows the topics treated in the last
 
76
    lecture.}
 
77
 
 
78
  \begin{itemize}
 
79
  \item This
 
80
    \pause
 
81
  \item and that.    
 
82
  \end{itemize}
 
83
}
 
84
 
 
85
 
 
86
\subsection{Learning Objectives}
 
87
 
 
88
\frame{
 
89
  \frametitle{This frame shows the last lecture's learning objectives.}
 
90
 
 
91
  \begin{itemize}
 
92
  \item An objective.
 
93
    \pause
 
94
  \item And another one.
 
95
  \end{itemize}
 
96
}
 
97
 
 
98
 
 
99
 
 
100
\part{Today's Lecture}
 
101
 
 
102
\frame{\partpage}
 
103
 
 
104
 
 
105
\section[Models]{The Model of Overhead-Free Computation}
 
106
 
 
107
\frame<beamer>{\tableofcontents[current]}
 
108
 
 
109
 
 
110
\subsection[Standard Model]{The Standard Model of Linear Space}
 
111
 
 
112
\frame
 
113
{
 
114
  \frametitle{A frame.}
 
115
}
 
116
 
 
117
 
 
118
\section[Limitations]{Limitations of Overhead-Free Computation}
 
119
 
 
120
\frame<beamer>{\tableofcontents[current]}
 
121
 
 
122
 
 
123
\subsection[Linear Space]{Linear Space versus Overhead-Free Computation}
 
124
 
 
125
\frame
 
126
{
 
127
  \frametitle{A frame.}
 
128
}
 
129
 
 
130
\end{document}
 
131
 
 
132