\documentclass[12pt]{article} % for using MikTex latex and then creating a ps or pdf from the dvi file % you might need to uncomment the following line % \special{landscape} %%% load sslides.sty \usepackage{sslides} %%% to support German characters like äöü %\usepackage[]{fontenc} %\usepackage[latin1]{inputenc} %\usepackage[austrian]{babel} %%% graphics \usepackage{graphicx} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%% Change author info here \def\nameTitle{Michael Hahsler} \def\emailTitle{hahsler@ai.wu-wien.ac.at} \def\affiliationTitle{Deptartment of Information Systems and Operations\\ Vienna University of Economics and Business Administration} %%% Change presentation info \def\presentationTitle{Simple Slides using \LaTeX2e} \def\presentationSubTitle{This is really simple here!} \def\eventTitle{} \def\placeAndDayTitle{Vienna, February 28, 2006} %%% used for footer in fancy headings \def\nameFooter{\nameTitle} \def\placeAndDayFooter{\placeAndDayTitle} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % comment if fancyheadings.sty is not installed (e.g., for MikTex) % you can change the logo in the file fancyheadings.tex \input{includes/fancyheadings} %%% most beamers can't project decent colors so I set them to max! % redefine emph color %\definecolor{Emph}{rgb}{1,0,0} %red \definecolor{Emph}{rgb}{0.8,0.2,0.2} %softer red for display \renewcommand{\emph}[1]{\textcolor{Emph}{\bf\textit{#1}}} % define color for slide titles %\definecolor{Title}{rgb}{0,0,1} %blue \definecolor{Title}{rgb}{0.2,0.2,0.8} %softer blue for display %\definecolor{Title}{rgb}{1,0,0} %red %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{document} %%% Title slide: choose a title slide layout %%% you can also adapt the title slide in includes/titlepage_... %\include{includes/titlepage_left} %\include{includes/titlepage_center} %% edit the logos in includes/titlepage_logo.tex \include{includes/titlepage_logo} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%% start with the slides here using sections and subsections as slides \section{Features} \begin{itemize} \item Uses only standard \LaTeX commands of special commands like slidetex. \begin{enumerate} \item \emph{Create slides directly from a paper:} Copy a few line to the preamble of your paper's tex file, delete or abbreviate what you don't like to have on your slides and you are ready to go. \item \emph{Create a paper form your slides:} Take the \LaTeX code from your slides. Build some pretty sentences from your bullet points and it's (almost) an award winning paper. \end{enumerate} \item Directly produces slides in pdf format: \begin{enumerate} \item \emph{Slides} with slide index for presentation with Acrobat Reader, xpdf, evince,\dots \item \emph{Handouts} with 2 or 4 slides per page. \end{enumerate} \end{itemize} \section{Getting started} \LARGE \begin{enumerate} \item Make a copy of \verb+slides.tex+, e.g, \verb+mycopy.tex+. \item Adapt the first line in the \verb+Makefile+ accordingly. \item Edit \verb+mycopy.tex+. \item Create slides with \verb+make+ or \verb+pdflatex mycopy.tex+. \item Create handouts with \verb+make 2+ or \verb+make 4+. \end{enumerate} \section{Starting a new slide} \begin{enumerate} \item A new slide starts with a section command \\ \verb+\section{A new Slide}+ \item You can use nearly all \LaTeX-commands on your slides: \small \begin{itemize} \item Enumerate, itemize, description \item Mathematical Mode: $e=mc^2$ \item Verbatim: \verb+\blabla+ \item Font sizes: \scriptsize scriptsize, \tiny tiny, \small small, \normalsize normalsize, \large large, \Large Large, \LARGE LARGE, \huge huge \small \item Colors: \textcolor{Red}{Red,} \textcolor{Blue}{Blue,} \textcolor{Green}{Green,} \item Emphasizing: \verb+\emph{Important}+ produces \emph{Important} \item tabulars, figures \dots \end{itemize} \end{enumerate} \section{Automatic spacing for lists} \begin{itemize} \item automatic spacing tries to use the space on the slides as best as possible \item automatic spacing tries to use the space on the slides as best as possible \item automatic spacing tries to use the space on the slides as best as possible \end{itemize} \section{Setting text next to a figure} \begin{minipage}[m]{.49\textwidth} \includegraphics[width=\textwidth]{figures/model} \centerline{My first figure.} \end{minipage} % \begin{minipage}[m]{.49\textwidth} \begin{itemize} \item To set text next to a figure you can use the \verb+minipage+ environment. \end{itemize} The Code looks like this: \tiny \begin{verbatim} \begin{minipage}[m]{.49\textwidth} \includegraphics... \end{minipage} % \begin{minipage}[m]{.49\textwidth} blablabla \end{minipage} \end{verbatim} \end{minipage} \section{Text that is longer than a page} The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog The quick brown fox jumps over a lazy dog %%% use bibtex %\bibliographystyle{plain} %\bibliography{...} \end{document}