welcome: please sign in
location: Diff for "Computer/Latex/Beamer"
Differences between revisions 11 and 12
Revision 11 as of 2015-07-06 12:19:01
Size: 2175
Editor: leif
Comment:
Revision 12 as of 2015-07-08 10:27:20
Size: 2265
Editor: leif
Comment:
Deletions are marked like this. Additions are marked like this.
Line 19: Line 19:
  {{{eightbeamer basename}}}.
   
A file with the name {{{basenameeight.pdf}}} with eight images per page will be generated. Note that the command uses the {{{.tex}}}-file and not {{{.ps}}} or {{{.pdf}}}
  {{{eightbeamerpdf example}}} if you use pdflatex

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

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

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.

  •  \usetheme[liontopcorner,framenumbers]{Regler} 

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

  • eightbeamerpdf example if you use pdflatex

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

A file with the name basenameeight.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{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}

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