Beamer class is for presentation in LaTex. You can download here Beamer [https://sourceforge.net/projects/latex-beamer/] and pgf .
As I have installed “complete MiTex”, beamer is already installed. If you are not, 1) download BEAMER and PGF 2) unzip download 3) copy and paste the whole folder under C:\MiKTeX 2.7\tex\latex[\pgf] and C:\MiKTeX 2.7\tex\latex[\beamer] . After that, you might need to refresh Miktex package. 1)Go to Miktex package manager 2)click repostitory 3)click synchronize 4) wait til it finished
Document Header :
\documentclass[ignorenonframetext]{beamer}
\usepackage[accumulated]{beamerseminar}
\usepackage{alltt}
\usepackage{beamerthemeshadow}
\beamertemplateshadingbackground{red!10}{blue!10}
\usepackage[headheight=12pt,footheight=12pt]{beamerthemeboxes}
\usepackage{setspace,supertabular}
\usepackage{graphics}
\usepackage{epsfig}
\usepackage{longtable}
\usepackage{eurosym}
\usepackage{pause}
\usepackage{textcomp}
\usepackage{fontsmpl}
Slide Footer:
\addfootboxtemplate{\color{blue}}{\color{white}\tiny\hspace*{0.5cm}
Your Name}
\addfootboxtemplate{\color{blue}}{\color{white}\tiny\hspace*{3.5cm}
Organization's Name}
Presentation Title
\title{\Large Presentation Title}
\author{Name \\\tiny{email}}
\institute[blah blah]{blah blah \\
blah blah}
\newcommand{\sref}[1]{SLIDE \ref{#1}}
\let\heading=\frametitle
\begin{document}
\frame{\maketitle }
Here ends the title of your presentation
\section*{Outline}
\begin{frame}
\tableofcontents
\end{frame}
\tablecontent command give the outline of presentation if you keep by section in the following.
\section{Section}
\subsection{Subsection}
\subsubsection{Subsubsection}
Here ends the title of your presentation
\begin{frame}{Frame Title}
\begin{itemize}
\item item1
\item item2
\end{itemize}
\end{frame}
Frame or Slide with Description. On the slide , there is a list with two items
The following is another slide.
%****************************************
\begin{frame}{Another Frame or Slide}
\begin{itemize}
\item item1
\item item2
\end{itemize}
\end{frame}
%****************************************
At the end of your *.tex,
\end{document}
Online can be seen here :
- http://cs.guc.edu.eg/research/latex_online_tutorial/LaTeX/LaTeX_03/latex_beamer_02.html
- http://www.bruners.de/files/beameruserguide.pdf
