welcome: please sign in

Revision 16 as of 2018-08-29 15:59:31

Clear message
location: Computer / Latex / Beamer

Presentations with Beamer

Beamer is an advanced package for presentations. The original documentation is available with the command texdoc beamer in a terminal window.

The design of the presentation is controlled by themes. Apart from the many standard themes, there is a local theme for Automatic Control. It is selected with

in the document preamble.

are a couple of local themes for Automatic Control, LTH. They are contained in the package beamerthemeRegler.sty, and selected with options to this package:

The default version does not show any frame numbers. To get numbered frames, use the option [framenumbers], e.g.

To create the paper usually handed out before a presentation, use the command

A file with the name exampleeight.pdf with eight images per page will be generated. Note that the command uses the .tex-file and not .ps or .pdf

The beginning of the LaTeX-document that generated the examples:

\documentclass{beamer}

%\usetheme[lionbackground]{Regler}
%\usetheme[lioncorner]{Regler}
\usetheme[liontopcorner]{Regler}
%\usetheme[lionheader]{Regler}

\usepackage[utf8]{inputenc}
\usepackage{fourier}

\begin{document} 
\title{Nonlinear Control and Servo Systems\\\ Lecture 2}
\author{Anders Robertsson}
\institute{Dept. of Automatic Control\\Lund Institute of Technology}
\frame{\titlepage} 

% ----------------------------------------------------------------------

\begin{frame}
  \frametitle{Today's Goal}
    To be able to
    \begin{itemize}\slshape
    \item prove local and global stability of an equilibrium point
      through Lyapunov's method \pause
    \item show stability of a set (for example, a limit cycle) through
      invariant set theorems
    \end{itemize}
\end{frame}
% ----------------------------------------------------------------------
% etc etc
\end{document}