[Tex/LaTex] Latex presentation

presentations

I try with following code, but have many errors… Am I need to install special things for create presentation? It has any special steps for starting and executing? I tried a lot. But, I could't run a simple code so far….

\documentclass[ Options]{prosper}
\title{ aa}
\subtitle{ ss}
\author{ ccc} 
\institution{ssf }
\slideCaption{sfsf }

\begin{document}
\maketitle
\begin{slide} [transition] { title }
Material for the slide
\end{slide}

\overlays{n}{
\begin{slide} [transition] {  title }
Material for the slide
\end{slide}
}
\end{document}

Best Answer

As mentioned in the comments above prosper is pretty outdated. Have a look at the following beamerexample.

\documentclass[english]{beamer}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usetheme{AnnArbor}

\author{Jane Doe}
\title{My first presentation}
\subtitle{foobar}

\begin{document}

\section{First section}

\frame{
\maketitle
}


\frame{
\frametitle{Hello World}

\begin{itemize}
\item abcde
\item fghij
\item klmno
\end{itemize}

\begin{enumerate}
\item 1234
\item 5678
\item 9012
\end{enumerate}
}

\end{document}

beamer

Related Question