blob: 4e8ba17d19d81fc4f676e19bd916b6224003e9eb (
plain)
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
|
% Copyright 2007 by Till Tantau
%
% This file may be distributed and/or modified
%
% 1. under the LaTeX Project Public License and/or
% 2. under the GNU Public License.
%
% See the file doc/licenses/LICENSE for more details.
% $Header$
\documentclass[notes]{beamer}
% You might wish to try this instead of the above line:
%\documentclass[class=article]{beamer}
%\usepackage{beamerbasearticle}
%\usepackage{hyperref}
\usepackage[framesassubsections]{beamerprosper}
\mode<presentation>
{
\definecolor{beamerstructure}{RGB}{43,79,112}
\definecolor{sidebackground}{RGB}{230,242,250}
\color{beamerstructure}
\usetheme{Goettingen}
\usepackage{times}
\userightsidebarcolortemplate{\color{sidebackground}}
\beamertemplateballitem
}
\title{A Beamer Presentation Using (HA-)Prosper Commands}
\subtitle{Subtitles Are Also Supported}
\author{Till Tantau}
\institution{The Institution is Mapped To Institute}
\begin{document}
\maketitle
\tsectionandpart{Introduction}
\overlays{2}{
\begin{slide}[trans=Glitter]{About this file}
\begin{itemstep}
\item
This is a beamer presentation.
\item
You can use the prosper and the HA-prosper syntax.
\item
This is done by mapping prosper and HA-prosper commands to beamer
commands.
\item
The emulation is by no means perfect.
\end{itemstep}
\end{slide}
}
\section{Second Section}
\subsection{A subsection}
\frame
{
\frametitle{A frame created using the \texttt{frame} command.}
\begin{itemize}[<+->]
\item You can still use the original beamer syntax.
\item The emulation is intended only to make recycling slides
easier, not to install a whole new syntax for beamer.
\end{itemize}
}
\begin{notes}{Notes for these slides}
My notes for these slides.
\end{notes}
\end{document}
|