welcome: please sign in

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

Revision 8 as of 2012-11-21 13:48:40

location: Computer / Latex / Beamer

Video presentations with Beamer

Beamer is an advanced package for video presentations. Here is the original documentation.

The design of the presentation is controlled by themes. Apart from the default themes, there 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

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

\documentclass{beamer}
\usepackage{schoolbook}

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

\begin{document}

\title[Nonlinear Control and Servo Systems Lecture 2]{Nonlinear Control and Servo Systems\\Lecture 2}
\author{Anders Robertsson}
\institute{Automatic Control LTH\\Lund University}
\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}
\end{document}