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