%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % ST 810A -- TEMPLATE FOR MAKING PROSPER PRESENTATIONS % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % These slides are created using the PROSPER package % % The pdf option sets things up for projection (after conversion to pdf) % The azure option is one of several available backgrounds; others % are rico, alienglow, autumn, darkblue (see below) % % To process and create pdf for projecting % % unity% add psutils % unity% add prosper % unity% latex prospertemplate % unity% dvips prospertemplate % unity% ps2pdf prospertemplate.ps % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % To print 6-up, I make a postscript temp.ps containing the full % pages only (so only those where all bullets appear). This can be done % using ``ps'' option (see below) or by bringing up the ps file in % ghostview and manuallly selecting the pages you want in to include % in the handout % % psnup -nup 6 -l -b0.5in temp.ps prospertemplate_handout.ps % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Prosper offers lots of different user-contributed slide styles % with different type and background colors. Here, we use the % ``azure'' style. Other styles available with the distribution of % Prosper we have in the Department include ``alienglow,'' ``autumn,'' % ``contemporain,'' ``darkblue,'' ``default,'' ``frames,'' ``lignesbleues,'' % ``nuancegris,'' ``troispoints,'' ``rico.'' On unity, add prosper and % then go to the directory /ncsu/prosper and various subdirectories % to see more. Additional styles are available on various Prosper % web sites. Try them; it's fun! (Some of these have bugs, which % will be obvious when you try them with this file.) Advanced users % can modify these or create their own! % % The ``pdf'' option produces output for presentation with a laptop; % the ``ps'' option produces output for printing (no overlays, etc). % The ps option has some bugs; I have found it safer to simply go to % ghostview with the ps file produced using the pdf option and marking % the slides I want to include in the handout and saving them to a file % which I can then print n-up. % See the Prosper manual on the class web page for additional info. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \NeedsTeXFormat{LaTeX2e} \documentclass[pdf,azure]{prosper} % put your packages here \usepackage{psfig,pstricks,amsthm,amssymb,amsmath} \usepackage{graphicx,psfrag,pst-node,subfigure} % defining colors: % \newgray{vlgray}{0.9} \newrgbcolor{lblue}{0.8 0.92 0.95} \newrgbcolor{lred}{1 0.8 0.8} \newrgbcolor{lyellow}{1 1 0.6} \newrgbcolor{orange}{1 0.7 0.2} \newrgbcolor{lgreen}{0.87 0.95 0.8} %\newrgbcolor{dgreen}{0.37 0.43 0.37} \newrgbcolor{dgreen}{0.36 0.75 0.41} \newrgbcolor{violet}{0.6 0.0 0.4} % % put your newcommands % % Command so first word has color I use in azure \newcommand{\citem}{\item $\mbox{}$} % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Info for the title slide here - it will be created automatically % by the ``maketitle'' command in the body of the document. This must % be in the preamble (before the \begin{document} statement) % This puts the NCSU logo in the lower left corner of each slide \Logo(-1.0,-1.1){\includegraphics[height=0.25cm]{newlogo}} \title{Put the main title here} \subtitle{Put an optional subtitle here} \author{\large Your Name} \vspace*{0.2in} \email{\normalsize \tt youremail@stat.ncsu.edu \\ http://www.stat.ncsu.edu/$\sim$you} \institution{\includegraphics[height=0.8cm]{deptlogo}} \slideCaption{A caption that will appear on each slide} % \slideCaption will also number each slide as n/N, where n is % the current slide and N is the total. If you want to suppress % the total, include the ``nototal'' option in the [] part of % the documentclass statement % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{document} % Creates the title slide \maketitle % Now start the rest of the slides % The overlays and itemstep commands will display the bullets % one at a time! \overlays{4}{ \begin{slide}{Outline} \begin{itemstep} \item {\bf First section} \item {\bf Second section} \item {\bf Third section} \item {\bf Fourth section} \end{itemstep} \end{slide} } \begin{slide}{Title for first section} % itemize works in the usual way \begin{itemize} \item First item \item Second item \citem {\blue If you color} the first word in an item, you need to put some space between it and the \verb+\item+ or else the color won't take; for this purpose, I use my \verb+\citem+ newcommand (see the preamble for this presentation) \end{itemize} \end{slide} \begin{slide}{} A slide with no title should include the curly braces but have nothing inside them. \end{slide} % Cutesy animation effects as in PowerPoint are possible % With the Dissolve option, the previous slide will ``dissolve'' % into the next one -- try also the following: % % Replace, Split, Blinds, Box, Wipe, Glitter \begin{slide}[Dissolve]{} The previous slide should dissolve into this one (only works in the pdf file) {\blue Note:} Cutesy animation effects like this should be used {\sl \red sparingly}, as they are distracting and imply a presentation lacking substance (that is trying to make up for this with ``special effects!'') \end{slide} \overlays{4}{ \begin{slide}{Overlay commands} \begin{itemstep} \fromSlide{1}{\item First item that will stay on all overlays for this slide} \onlySlide*{2}{\item This will appear on the second overlay} \onlySlide*{3}{\item This will replace the previous bullet } \onlySlide*{4}{\item This will replace the previous bullet yet again} \end{itemstep} \end{slide} } \overlays{5}{ \begin{slide}{More overlay commands} \onlySlide*{1}{Here is some stuff that will appear on the first overlay only} \fromSlide{2}{Here is some more stuff that will replace the previous stuff and appear on overlays 2 through 5} \onlySlide{3}{Here is some stuff for the third overlay only} \FromSlide{4} Everything from now on will appear on the remaining overlays That includes this stuff. \OnlySlide{5} This stuff will appear only on the final overlay \end{slide} } \begin{slide}[Wipe]{} For more on overlay commands, see the manuals and additional Prosper examples on the class web page \end{slide} \overlays{3}{ \begin{slide}{Importing graphics} Works just like in seminar, and can be overlaid, replaced \onlySlide*{1}{\centering \includegraphics[width=2.5in]{bpersp.eps}} \psfrag{alpha0}{\scriptsize $\alpha_{i0}$} \psfrag{alpha1}{\scriptsize $\alpha_{i1}$} \psfrag{density}{\tiny density} \onlySlide*{2}{\centering \includegraphics[width=2.5in]{bpersp.eps}} \onlySlide*{3}{\centering \includegraphics[width=2.5in]{dental.ps}} \end{slide} } \begin{slide}[Glitter]{To learn more} See the resources on the class web page! \end{slide} \end{document}