- Split: two lines appear in the center of the screen and sweep outwards,
revealing the new slide.
- Blinds: multiple lines appear, evenly spaced across the screen, and
then sweep in the same direction to reveal the new slide.
- Box: a box expands outward from the center, revealing the new slide.
- Wipe: a single line sweeps across the screen from one edge to the
other revealing the new slide.
- Dissolve: the old slide dissolves to reveal the new slide.
- Glitter: similar to Dissolve except the effect
sweeps from one side of the screen to the other.
- Replace: the effect is simply to replace the old slide with the
new slide.
You can also create overlays using prosper. Overlays can be used to
animate pdf presentations and to display information incrementally on normal
transparencies. To create an overlay, imbed a slide into the
\overlays macro like this:
\overlays{n}{
\begin{slide}{...}
...
\end{slide}}
Where the first argument {n} is the number of steps involved in the animation. Some
macros that you can use to control the material presented in each slide of an overlay
are:
- \fromSlide{p}{mat} Puts mat on every slide
from p to n.
- \untilSlide{p}{mat} Puts mat on every slide
from slide 1 to p.
- \onlySlide{p}{mat} Puts mat on slide
p only.
- \FromSlide{p} Puts all the material after the macro on every
slide after p.
- \UntilSlide{p} Puts all the material after the macro on every
slide from 1 to p.
- \OnlySlide{p} Puts all the material after the macro only on
slide p.
If you plan on using the macros \fromSlide, \untilSlide, or
\onlySlide, to replace material between slides you must add an asterisk
before the first argument and a percent sign after the last argument. For example:
\onlySlide*{1}{\includegraphics{example-1.eps}}%
\onlySlide*{2}{\includegraphics{example-2.eps}}%
\onlySlide*{3}{\includegraphics{example-3.eps}}%
This code would put example-1.eps on the first slide, would then replace it with
example-2.eps on the second slide, and then replace it again with
example-3.eps on the third slide. Note that the percent signs at the end of each
line prevent LaTeX from inserting spaces - due to carriage returns - that would cause a slight
displacement between the graphics of your slides
If you want the material that gets put on a slide to depend on the mode (pdf or ps) you can use
these macros:
- \PDForPS{ifPDF}{ifPS} Interprets material ifPDF if the
chosen mode is pdf and ifPS if the mode is ps.
- \onlyInPDF{mat} Interprets materials mat only if the
chosen mode is pdf.
- \onlyInPS{mat} Interprets materials mat only if the
chosen mode is ps.
To summarize, one possible sample of code for an overlay could be:
\overlays{3}{%
\begin{slide}{Example}
\onlySlide*{1}{\includegraphics{example-1.eps}}%
\onlySlide*{2}{\includegraphics{example-2.eps}}%
\onlySlide*{3}{\includegraphics{example-3.eps}}%
\onlyInPS{\includegraphics{example.eps}}%
\end{slide}
In pdf format this slide will be displayed in three steps with three different
figures. In ps format there will be only one slide with the figure
example.eps.
Once you have created a prosper file if you want to translate it to pdf
format, rather that typesetting it with latex, typeset your file using the command:
% prosper document.tex
If you want to use the file to print transparencies, use dvips in
the same manner that you would for a normal LaTeX document.
For more information on the prosper class, see the prosper webpage at
http://prosper.sourceforge.net
Copyright (c) HMC Computer Science Department.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.1
or any later version published by the Free Software Foundation;
with the no Invariant Sections, with no
Front-Cover Texts, and with no Back-Cover Texts.
A copy of the license is included in the section entitled ``GNU Free Documentation License.''