|
|
The system for making simula-slides is based on the package prosper. General
information on this package may be obtaind at the prospser site. You may also
find some information in /usr/share/doc/prosper/
Getting started with simula slides
A very sample document follows. Most standard LaTeX constructs is used as you
expect (like \title, \author, evironments etc), so only specific stuff is
included:
%use the prosper class
\documentclass[pdf,simula,slideColor,colorBG]{prosper}
%Caption on each slide
\slideCaption{Your slide Caption}
\begin{document}
% start a slide, argument goes as header
\begin{slide}{Outline}
%here goes a slide
\end{slide}
% we have to slide types, HeadSlide is the default
\SimulaHeadSlide
\begin{slide}{Slide 2}
Slide stuff
\end{slide}
\begin{slide}{More head}
This is also a head slide
\end{slide}
% the other type is SubSlide. Each type is active until the other type is
% specified with an explicit command.
\SimulaSubSlide
\begin{slide}{Sub slide 1}
A sub slide
\end{slide}
\end{document}
|