Beamer is a LaTeX class for creating slides for presentations. It supports both pdfLaTeX and LaTeX + dvips. The name is taken from the German word Beamer, a pseudo-anglicism for video projector.
The beamer class is not the first LaTeX class for creating presentations, and like many of its predecessors, it has special syntax for defining 'slides' (known in Beamer as 'frames'). Slides can be built up on-screen in stages as if by revealing text that was previously hidden or covered. This is handled with PDF output by creating successive pages that preserve the layout but add new elements, so that advancing to the next page in the PDF file appears to add something to the displayed page, when in fact it has redrawn the page.
- Copy this text into a file named file.tex:
\documentclass{beamer}
\usepackage[latin1]{inputenc}
\usetheme{Warsaw}
\title[Make a LaTeX presentation using Beamer]{Introduction to Beamer\\How to make a presentation with LaTeX?}
\author{Nadir Soualem -- Astozzia}
\institute{Math-linux.com}
\date{Jule 13, 2007}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}{Introduction}
This is a short introduction to Beamer class.
\end{frame}
\end{document}
- Compile file.tex to obtain file.pdf:
% pdflatex file.tex
- View file.pdf:
% acroread file.pdf
- The beamer class file is located in:
/util/TeX/share/texmf/tex/latex/beamer/beamer.cls
- http://en.wikipedia.org/wiki/Beamer_%28LaTeX%29
- http://bitbucket.org/rivanvx/beamer