blob: aa4651824a90cada520972fb0fd581b566b516fc (
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
|
% $Header: /cvsroot/latex-beamer/latex-beamer/emulation/examples/beamerexample-prosper.tex,v 1.3 2004/10/07 20:53:07 tantau Exp $
% Copyright 2003 by Till Tantau <tantau@users.sourceforge.net>.
%
% This program can be redistributed and/or modified under the terms
% of the GNU Public License, version 2.
\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}
|