welcome: please sign in
location: Diff for "Computer/Latex/Beamer"
Differences between revisions 19 and 23 (spanning 4 versions)
Revision 19 as of 2022-05-02 11:46:04
Size: 2534
Editor: leif
Comment:
Revision 23 as of 2022-05-06 15:51:49
Size: 2942
Editor: leif
Comment:
Deletions are marked like this. Additions are marked like this.
Line 19: Line 19:
To create the [[attachment:exampleeight.pdf|paper usually handed out at a presentation|&do=get]], use the command
  {{{eightbeamerpdf example}}} if you use pdflatex
To create the [[attachment:beamerExampleeight.pdf|presentation handout|&do=get]], use the command
Line 22: Line 21:
  {{{eightbeamerdvi example}}} if you use latex -> dvips -> ps2pdf   ||<tablestyle="width:60%"> {{{eightbeamerpdf beamerExample}}}|| if you use pdflatex||
  ||{{{eightbeamerlua beamerExample}}}|| if you use lualatex||
  ||{{{eightbeamerdvi beamerExample}}}|| if you use latex -> dvips -> ps2pdf||
Line 24: Line 25:
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}}} A file with the name {{{beamerExampleeight.pdf}}} with eight images per page will be generated. Note that the command uses the {{{.tex}}}-file and not {{{.ps}}} or {{{.pdf}}}
Line 28: Line 29:
The beginning of [[attachment:example.tex|the LaTeX-document that generated the examples|&do=get]]: The beginning of the tex file that created the example:
Line 32: Line 33:
\usepackage[utf8]{inputenc}
Line 34: Line 34:

%%
%% Some tikz statements come here
%%
Line 37: Line 38:
\title{Nonlinear Control \\and Servo Systems} \title[Nonlinear Control and Servo Systems]{Nonlinear Control\\ and Servo Systems}
Line 41: Line 42:
\frame{\titlepage} \maketitle
Line 45: Line 46:
\begin{frame}
  \frametitle
{Today's Goal}
\begin{frame}{Today's Goal}
Line 56: Line 56:
\begin{frame}{Material}
  \begin{itemize}
  \item Slotine and Li: Chapter~3
  \item Lecture notes
  \end{itemize}
\end{frame}
-------------------------------------------------------
Line 59: Line 66:

The complete files for creating the example document are available in Gitlab:
[[https://gitlab.control.lth.se/regler/beamerExample]]

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 presentation handout, use the command

  • eightbeamerpdf beamerExample

    if you use pdflatex

    eightbeamerlua beamerExample

    if you use lualatex

    eightbeamerdvi beamerExample

    if you use latex -> dvips -> ps2pdf

A file with the name beamerExampleeight.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 tex file that created the example:

\documentclass{beamer}
\usetheme{Regler}
%%
%% Some tikz statements come here
%%
\begin{document} 
\title[Nonlinear Control and Servo Systems]{Nonlinear Control\\ and Servo Systems}
\subtitle{Lecture 2}
\author{Anders Robertsson}
\institute{Dept. of Automatic Control\\Lund Institute of Technology}
\maketitle

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

\begin{frame}{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}
% ----------------------------------------------------------------------
\begin{frame}{Material}
  \begin{itemize}
  \item Slotine and Li: Chapter~3
  \item Lecture notes
  \end{itemize}
\end{frame}
-------------------------------------------------------
% etc etc
\end{document}

The complete files for creating the example document are available in Gitlab: https://gitlab.control.lth.se/regler/beamerExample

The old versions of this theme are still available:

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