template2.tex

The following LaTeX source file uses overlays either with itemstep or with the macros \fromSlide, \untilSlide, \onlySlide.

To create the PDF file template2.pdf, (1) be sure to use the prosper class, then (2) execute the command latex template2.tex, and (3) the command dvipdf template2.dvi.


%%%%%%%%%%%%%%%%%%%%%%%%%%% template2.tex %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[bruce,pdf,colorBG,slideColor]{prosper}
\hypersetup{pdfpagemode=FullScreen}

\title{ your title }
\subtitle{ optional subtitle }
\author{ you }
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\DefaultTransition{Wipe}        %%% otherwise, it is "Replace"
\begin{document}
\maketitle                              %%% = slide 1
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

\begin{slide}{Slide 2}                  %%% = slide 2
        This is the first non-Title slide.
\end{slide}

\overlays{6}{                           %%% = slide 3 (images 3-8)
\begin{slide}{itemized lists}
    \begin{itemstep}
        \item  For slides, the {\tt itemstep} environment
                is an easy way to show list items incrementally.
        \item  Here is item two (appears on new overlay)
        \item  Here is item three (appears on new overlay)
        \begin{itemize}
            \item  A subitem (appears on new overlay)
            \item  ...and another (new overlay)
        \end{itemize}
        \item  Final item
    \end{itemstep}
\end{slide}}

\overlays{3}{                           %%% = slide 4 (images 9-11)
        \begin{slide}{slide 4; equations}
        \onlySlide*{1}{This is the text for overlay 1 only.}
        \fromSlide*{2}{This is the text starting at overlay 2.}
        \fromSlide{1}{ $$ C = 2 \pi r $$ }
        \fromSlide{2}{ $$ A = 4 \pi r^2 $$ }
        \onlySlide{3}{ $$ V = \frac{4 \pi r^3}3 $$ }
\end{slide}}

\begin{slide}{Last Slide}               %%% = slide 5
        The End.
\end{slide}

\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%% end of template2.tex %%%%%%%%%%%%%%%%%%%%%%%%%%%