welcome: please sign in
location: Diff for "Computer/Latex/Beamer"
Differences between revisions 16 and 19 (spanning 3 versions)
Revision 16 as of 2018-08-29 15:59:31
Size: 2711
Editor: leif
Comment:
Revision 19 as of 2022-05-02 11:46:04
Size: 2534
Editor: leif
Comment:
Deletions are marked like this. Additions are marked like this.
Line 8: Line 8:
The original documentation is available with the command {{{texdoc beamer}}} in a terminal window. The original documentation is available with the command
  
{{{texdoc beamer}}}
in a terminal window.
Line 10: Line 12:
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
   {{{ \
usetheme{Regler} }}}
in the document preamble.
The design of the presentation is controlled by ''themes''. Apart from the many standard themes, there is a local theme for Automatic Control. [[attachment:beamerExample.pdf|See the example using this theme|&do=get]]
Line 14: Line 14:
It is selected with
   {{{\usetheme{Regler}}}}
in the document preamble. The default version does not show frame numbers or navigation symbols. To get these use one or both options:
  {{{\usetheme[framenumbers,navigationsymbols]{Regler} }}}
Line 15: Line 19:

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:

 * [[attachment:beamerthemelioncorner.pdf|\usetheme[lioncorner]{Regler}|&do=get]]
 * [[attachment:beamerthemelionheader.pdf|\usetheme[lionheader]{Regler}|&do=get]]
 * [[attachment:beamerthemelionbackground.pdf|\usetheme[lionbackground]{Regler}|&do=get]]
 * [[attachment:liontopcorner.pdf|\usetheme[liontopcorner]{Regler}|&do=get]]

The default version does not show any frame numbers. To get numbered frames, use the option {{{[framenumbers]}}}, e.g.
   {{{ \usetheme[liontopcorner,framenumbers]{Regler} }}}

To create the [[attachment:exampleeight.pdf|paper usually handed out before a presentation|&do=get]], use the command
To create the [[attachment:exampleeight.pdf|paper usually handed out at a presentation|&do=get]], use the command
Line 39: Line 32:
\usepackage[utf8]{inputenc}
\usetheme{Regler}
Line 40: Line 35:
%\usetheme[lionbackground]{Regler}
%\usetheme[lioncorner]{Regler}
\usetheme[liontopcorner]{Regler}
%\usetheme[lionheader]{Regler}

\usepackage[utf8]{inputenc}
\usepackage{fourier}
Line 49: Line 37:
\title{Nonlinear Control and Servo Systems\\\ Lecture 2} \title{Nonlinear Control \\and Servo Systems}
\subtitle{Lecture 2}
Line 70: Line 59:

The old versions of this theme are still available:

 * [[attachment:beamerthemelioncorner.pdf|\usetheme[lioncorner]{Regler}|&do=get]]
 * [[attachment:beamerthemelionheader.pdf|\usetheme[lionheader]{Regler}|&do=get]]
 * [[attachment:beamerthemelionbackground.pdf|\usetheme[lionbackground]{Regler}|&do=get]]
 * [[attachment:liontopcorner.pdf|\usetheme[liontopcorner]{Regler}|&do=get]]

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. See the example using this theme

It is selected with

  • \usetheme{Regler}

in the document preamble. The default version does not show frame numbers or navigation symbols. To get these use one or both options:

  • \usetheme[framenumbers,navigationsymbols]{Regler} 

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

  • eightbeamerpdf example if you use pdflatex

    eightbeamerdvi example if you use latex -> dvips -> ps2pdf

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}
\usepackage[utf8]{inputenc}
\usetheme{Regler}


\begin{document} 
\title{Nonlinear Control \\and Servo Systems}
\subtitle{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}

The old versions of this theme are still available:

Computer/Latex/Beamer (last edited 2022-05-09 11:24:04 by leif)