welcome: please sign in
location: Diff for "Computer/Latex/Beamer"
Differences between revisions 4 and 17 (spanning 13 versions)
Revision 4 as of 2011-05-26 09:57:47
Size: 1834
Editor: anton
Comment:
Revision 17 as of 2018-08-29 16:35:25
Size: 2479
Editor: leif
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from computerLatexBeamer
Line 5: Line 6:
= Video presentations with Beamer =
''Beamer'' is an advanced package for video presentations. Here is the [[attachment:beameruserguide.pdf|original documentation.]]
= Presentations with Beamer =
''Beamer'' is an advanced package for presentations.
T
he original documentation is available with the command {{{texdoc beamer}}} in a terminal window.
Line 8: Line 10:
The deisgn of the presentation is controlled by ''themes''. Apart from the default themes, there are a couple made especially for Automatic Control, LTH. 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
   [[attachment:beamer.pdf|\usetheme{Regler}|&do=get]]
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 10: Line 15:
 * [[attachment:beamerthemelioncorner.pdf|beamerthemelioncorner]]
 * [[attachment:beamerthemelionheader.pdf|beamerthemelionheader]]
 * [[attachment:beamerthemelionbackground.pdf|beamerthemelionbackground]]
To create the [[attachment:exampleeight.pdf|paper usually handed out at a presentation|&do=get]], use the command
  {{{eightbeamerpdf example}}} if you use pdflatex
Line 14: Line 18:
To create the [[attachment:exampleeight.pdf|paper usually handed out before a presentation]], use the command
  {{{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}}}
  {{{eightbeamerdvi example}}} if you use latex -> dvips -> ps2pdf
Line 18: Line 20:
The beginning of the LaTeX-document that generated the examples: 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 [[attachment:example.tex|the LaTeX-document that generated the examples|&do=get]]:
Line 21: Line 27:
\documentclass[mathserif,professionalfont]{beamer}
\usepackage{schoolbook}
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\u
setheme{Regler}
Line 24: Line 31:
%\usepackage{beamerthemelioncorner}
%\usepackage{beamerthemelionheader}
\usepackage{beamerthemelionbackground}
Line 28: Line 32:
\usepackage{graphicx,psfrag}

\begin{document}

\title{Nonlinear Control and Servo Systems\\\ Lecture 2}
\begin{document} 
\title{Nonlinear Control \\and Servo Systems}
\subtitle{Lecture 2}
Line 34: Line 36:
\institute{Automatic Control LTH\\Lund University}
\frame{\titlepage}
\institute{Dept. of Automatic Control\\Lund Institute of Technology}
\frame{\titlepage} 
Line 38: Line 40:
\frame{\frametitle{Today's Goal}
Line 40: Line 41:
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}
\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}
}}}
Line 49: Line 56:
} % \end{slide} The old versions of this theme are still available:
Line 51: Line 58:

}}}
 * [[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. It is selected with

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)