62
8/10/2019 ST4 Beamer http://slidepdf.com/reader/full/st4-beamer 1/62 Presentations using LaTeX An Introduction to the Beamer Class Marek Seliger October 20, 2011 Marek Seliger Presentations using LaTeX

ST4 Beamer

Embed Size (px)

Citation preview

Page 1: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 1/62

Presentations using LaTeXAn Introduction to the Beamer Class

Marek Seliger

October 20, 2011

Marek Seliger

Presentations using LaTeX

Page 2: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 2/62

Marek Seliger

Presentations using LaTeX

Page 3: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 3/62

Aspects of presentations using a computer

Why using a computer?

It’s up to date

Get color, incremental display for free

Lecture halls have usually a better beamer than projectorNo need to lug slides to conference

Talk can be easily posted and sent to colleagues

Copier slides cost 0.10 EUR each, printer slides 1 EUR each

No drag-and-drop, i.e. everything is reproducible

Marek Seliger

Presentations using LaTeX

Page 4: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 4/62

Aspects of presentations using a computer

Slides look different through a projector than on a screen

As you have limited space go easy on decorations and navigation.As the resolution is low, smoothed characters look differently.In particular be careful with thin lines: A

Colors look different than on a Monitor, depending on theprojector:

LCD Projector (Older Technology, large projectors): Lightcolors will not be visible

DLP Projector (Newer, usually very small): Tiny mirrorsproduce very bright picture but colors come out darker

Marek Seliger

Presentations using LaTeX

Page 5: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 5/62

Aspects of presentations using a computer

Projector Trouble

You cannot assume that your laptop will work by default onprojector X.In particular older projectors may not be able to synchronize tonew laptops.If possible at all, try out your laptop in advance.Also know how to change your display settings.If all fails, have a Plan B:

Have your slides on a memory stick (+USB cable).

PDF is probably the only format any laptop can display

Think about carrying printed slides

Marek Seliger

Presentations using LaTeX

Page 6: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 6/62

Why using LaTeX to produce a PDF Presentation

Why using LaTeX to produce a PDF Presentation

Why using LaTeX

Standard mathematical typesetting

Reuse already written up material

Why producing a PDF

PDF is highly portable (Portable Document Format)

PDF works on virtually any platform

Full screen display (CTRL-L) with every resolution

Marek Seliger

Presentations using LaTeX

Page 7: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 7/62

Why using LaTeX to produce a PDF Presentation

What is LaTeX Beamer?

The beamer class is a LaTeX class that allows you to create abeamer presentation. It can also be used to create slides. Itbehaves similarly to other packages like Prosper, but has theadvantage that it works together directly with pdflatex, but alsowith dvips. Text describing the class in this presentation is takenfrom their website:   http://latex-beamer.sourceforge.net/.

Marek Seliger

Presentations using LaTeX

Page 8: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 8/62

Why using LaTeX to produce a PDF Presentation

Useful features

The beamer class has several useful features:

You don’t need any external programs to use it other than

pdflatex, but it works also with dvips.

You can easily and intuitively create sophisticated overlays.

Finally, you can easily change the whole slide theme or onlyparts of it.

Marek Seliger

Presentations using LaTeX

Page 9: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 9/62

Why using LaTeX to produce a PDF Presentation

Advantages

The beamer class has several useful advantages:

You only need a text editor and LaTeX to create a slideshow

You only need a PDF reader to show it

Your presentation is in a light text file (+ media if present)

There are plenty of themes readily available

Big letters = less text = more easy to read / understand

Marek Seliger

Presentations using LaTeX

Page 10: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 10/62

First Steps

Installation

To use beamer, you need to have three packages installed in yourTEX path:beamer, xcolor and pgf.

You can find that all at  http://latex-beamer.sourceforge.net/ You install the packages by unpacking them either in the global oryour private TEX tree.To update a lookup table you need to call texhash after unpacking.In MiKTEX use the update wizard to install the packages calledlatex-beamer, xcolor, and pgf.

Marek Seliger

Presentations using LaTeX

Page 11: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 11/62

First Steps

Basic steps to use it

Once you have installed the beamer class, the basic steps to createa beamer presentation are the following:

1

Specify beamer as document class instead of article.2 Structure your LaTeX text using section and subsection

commands.

3 Place the text of the individual slides inside frame commands.

4

Run pdflatex on the text (or latex and dvips).

Marek Seliger

Presentations using LaTeX

Page 12: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 12/62

First Steps

References

Till TantauUsers Guide to the Beamer ClassVersion 3.01

http://latex-beamer.sourceforge.net

Marek Seliger

Presentations using LaTeX

Page 13: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 13/62

Basic steps

Creation of a Presentation

Compile with

1 pdflatex file.tex

The PDF-File can be viewed with a viewer of your choice.Adobe Reader supports transition effects and Full-Screen-modus.

alternative:

1 latex file.tex

2 dvips -o file.ps file.dvi3 ps2pdf file.ps

Marek Seliger

Presentations using LaTeX

Page 14: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 14/62

Basic steps

Minimal Template

\documentclass{beamer}

\usetheme{Berkeley}

\title{My Presentation}

\author{Myself}

\institute{Here}

\date{January 2006}

\begin{document}

\frame{ \titlepage}\frame{ BlaBla }

\end{document}

Marek Seliger

Presentations using LaTeX

Page 15: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 15/62

What if you need more room on a slide? You can also do a plainslide (like this one, without header and footer graphics) by using

\begin{frame}[plain]

Page 16: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 16/62

Structuring slides

Block and Example

Fancy Block Title

You can place text (or math, or whatever) in a snazzy coloredblock like this just by surrounding with

\begin{block}{Snazzy Block Title}You can ...

\end{block}

Example

Beamer also offers the example environment

\begin{example}

\end{example}

Marek Seliger

Presentations using LaTeX

Page 17: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 17/62

Structuring slides

Block and Example

Theorem2=1

Proof.

−2 = −2

4− 6 = 1− 3

4− 6 + 9/4 = 1− 3 + 9/4

(2− 3/2)2 = (1− 3/2)2

2− 3/2 = 1− 3/2

2 = 1

Marek Seliger

Presentations using LaTeX

Page 18: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 18/62

Structuring slides

Use of Alert In Beamer

You can emphasize text, like this, using this which is colored red bydefault.

Heres An alertblockGet an emphasized block using

\begin{alertblock}{Alert Block Title}

\end{alertblock}

Marek Seliger

Presentations using LaTeX

Page 19: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 19/62

Structuring slides

Columns

Smaller Column 1...

Bigger Column 2...

Marek Seliger

Presentations using LaTeX

Page 20: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 20/62

Structuring slides

Columns

Smaller Column 1...

Bigger Column 2...

\begin{columns}

\begin{column}{3cm}\begin{block}{Smaller Column 1} ... \end{block}

\end{column}

\begin{column}{5cm}

\begin{block}{Bigger Column 2} ... \end{block}

\end{column}\end{columns}

Marek Seliger

Presentations using LaTeX

Page 21: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 21/62

Timings

Pause, Timings, Etc.

Within practically any LATEX environment, use

\pause

before any command to delay its appearance:

Marek SeligerPresentations using LaTeX

Ti i

Page 22: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 22/62

Timings

Pause, Timings, Etc.

Within practically any LATEX environment, use

\pause

before any command to delay its appearance:

Item Aaay

Marek SeligerPresentations using LaTeX

Ti i

Page 23: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 23/62

Timings

Pause, Timings, Etc.

Within practically any LATEX environment, use

\pause

before any command to delay its appearance:

Item Aaay

Item Bee

Marek SeligerPresentations using LaTeX

Timings

Page 24: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 24/62

Timings

Pause, Timings, Etc.

Within practically any LATEX environment, use

\pause

before any command to delay its appearance:

Item Aaay

Item Bee

Item See

Marek SeligerPresentations using LaTeX

Timings

Page 25: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 25/62

Timings

Pause, Timings, Etc.

Within practically any LATEX environment, use

\pause

before any command to delay its appearance:

Item Aaay

Item Bee

Item See

1

Item Won

Marek SeligerPresentations using LaTeX

Timings

Page 26: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 26/62

Timings

Pause, Timings, Etc.

Within practically any LATEX environment, use

\pause

before any command to delay its appearance:

Item Aaay

Item Bee

Item See

1

Item Won2 Item Too

Marek SeligerPresentations using LaTeX

Timings

Page 27: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 27/62

Timings

Pause, Timings, Etc.

Within practically any LATEX environment, use

\pause

before any command to delay its appearance:

Item Aaay

Item Bee

Item See

1

Item Won2 Item Too

3 Item Tree

Marek SeligerPresentations using LaTeX

Timings

Page 28: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 28/62

g

Pause Source Code

\begin{itemize}

\pause \item Item Aaay

\pause \item Item Bee

\pause \item Item See\end{itemize}

\begin{enumerate}

\pause \item Item Won

\pause \item Item Too

\pause \item Item Tree\end{enumerate}

Marek SeligerPresentations using LaTeX

Alternative Timing

Page 29: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 29/62

g

Alternative Timing Specifications With Alert

To highlight the current line

Alternative

Item Aaay

\begin{itemize}[<+-| alert@+>]

\item Item Aaay

\item Item Bee\item Item See

\item Item Dee

\end{itemize}

Marek SeligerPresentations using LaTeX

Alternative Timing

Page 30: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 30/62

Alternative Timing Specifications With Alert

To highlight the current line

Alternative

Item Aaay

Item Bee

\begin{itemize}[<+-| alert@+>]

\item Item Aaay

\item Item Bee\item Item See

\item Item Dee

\end{itemize}

Marek SeligerPresentations using LaTeX

Alternative Timing

Page 31: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 31/62

Alternative Timing Specifications With Alert

To highlight the current line

Alternative

Item Aaay

Item Bee

Item See

\begin{itemize}[<+-| alert@+>]

\item Item Aaay

\item Item Bee\item Item See

\item Item Dee

\end{itemize}

Marek SeligerPresentations using LaTeX

Alternative Timing

Page 32: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 32/62

Alternative Timing Specifications With Alert

To highlight the current line

Alternative

Item Aaay

Item Bee

Item SeeItem Dee

\begin{itemize}[<+-| alert@+>]

\item Item Aaay

\item Item Bee\item Item See

\item Item Dee

\end{itemize}

Marek SeligerPresentations using LaTeX

Alternative Timing

Page 33: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 33/62

Loops With Timings

Notice how we can cycle through items.

Some Algorithm

First instructionLoop instruction  a

Loop instruction  b Loop instruction  c 

\alert<1>{First instruction} \\

\alert<2,5,8>{Loop instruction $a$} \\\alert<3,6,9>{Loop instruction $b$} \\

\alert<4,7,10>{Loop instruction $c$} \\

Marek SeligerPresentations using LaTeX

Alternative Timing

Page 34: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 34/62

Loops With Timings

Notice how we can cycle through items.

Some Algorithm

First instructionLoop instruction  a

Loop instruction  b Loop instruction  c 

\alert<1>{First instruction} \\

\alert<2,5,8>{Loop instruction $a$} \\\alert<3,6,9>{Loop instruction $b$} \\

\alert<4,7,10>{Loop instruction $c$} \\

Marek SeligerPresentations using LaTeX

Alternative Timing

Page 35: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 35/62

Loops With Timings

Notice how we can cycle through items.

Some Algorithm

First instructionLoop instruction  a

Loop instruction  b Loop instruction  c 

\alert<1>{First instruction} \\

\alert<2,5,8>{Loop instruction $a$} \\\alert<3,6,9>{Loop instruction $b$} \\

\alert<4,7,10>{Loop instruction $c$} \\

Marek SeligerPresentations using LaTeX

Alternative Timing

Page 36: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 36/62

Loops With Timings

Notice how we can cycle through items.

Some Algorithm

First instructionLoop instruction  a

Loop instruction  b Loop instruction  c 

\alert<1>{First instruction} \\

\alert<2,5,8>{Loop instruction $a$} \\\alert<3,6,9>{Loop instruction $b$} \\

\alert<4,7,10>{Loop instruction $c$} \\

Marek SeligerPresentations using LaTeX

Alternative Timing

Page 37: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 37/62

Loops With Timings

Notice how we can cycle through items.

Some Algorithm

First instructionLoop instruction  a

Loop instruction  b Loop instruction  c 

\alert<1>{First instruction} \\

\alert<2,5,8>{Loop instruction $a$} \\

\alert<3,6,9>{Loop instruction $b$} \\

\alert<4,7,10>{Loop instruction $c$} \\

Marek SeligerPresentations using LaTeX

Alternative Timing

Page 38: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 38/62

Loops With Timings

Notice how we can cycle through items.

Some Algorithm

First instructionLoop instruction  a

Loop instruction  b Loop instruction  c 

\alert<1>{First instruction} \\

\alert<2,5,8>{Loop instruction $a$} \\

\alert<3,6,9>{Loop instruction $b$} \\

\alert<4,7,10>{Loop instruction $c$} \\

Marek SeligerPresentations using LaTeX

Alternative Timing

Page 39: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 39/62

Loops With Timings

Notice how we can cycle through items.

Some Algorithm

First instructionLoop instruction  a

Loop instruction  b Loop instruction  c 

\alert<1>{First instruction} \\

\alert<2,5,8>{Loop instruction $a$} \\

\alert<3,6,9>{Loop instruction $b$} \\

\alert<4,7,10>{Loop instruction $c$} \\

Marek Seliger

Presentations using LaTeX

Alternative Timing

Page 40: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 40/62

Loops With Timings

Notice how we can cycle through items.

Some Algorithm

First instructionLoop instruction  a

Loop instruction  b Loop instruction  c 

\alert<1>{First instruction} \\

\alert<2,5,8>{Loop instruction $a$} \\

\alert<3,6,9>{Loop instruction $b$} \\

\alert<4,7,10>{Loop instruction $c$} \\

Marek Seliger

Presentations using LaTeX

Alternative Timing

Page 41: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 41/62

Loops With Timings

Notice how we can cycle through items.

Some Algorithm

First instructionLoop instruction  a

Loop instruction  b Loop instruction  c 

\alert<1>{First instruction} \\

\alert<2,5,8>{Loop instruction $a$} \\

\alert<3,6,9>{Loop instruction $b$} \\

\alert<4,7,10>{Loop instruction $c$} \\

Marek Seliger

Presentations using LaTeX

Alternative Timing

Page 42: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 42/62

Loops With Timings

Notice how we can cycle through items.

Some Algorithm

First instructionLoop instruction  a

Loop instruction  b Loop instruction  c 

\alert<1>{First instruction} \\

\alert<2,5,8>{Loop instruction $a$} \\

\alert<3,6,9>{Loop instruction $b$} \\

\alert<4,7,10>{Loop instruction $c$} \\

Marek Seliger

Presentations using LaTeX

Alternative Timing

Page 43: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 43/62

Timings

A Block With TimingsItem Aaay

Item Eee

\item<1-3> Item Aaay

\item<2-4> Item Bee

\item<3-5> Item See

\item<4-> Item Dee

\item<-4> Item Eee

Marek Seliger

Presentations using LaTeX

Alternative Timing

Page 44: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 44/62

Timings

A Block With TimingsItem Aaay

Item Bee

Item Eee

\item<1-3> Item Aaay

\item<2-4> Item Bee

\item<3-5> Item See

\item<4-> Item Dee

\item<-4> Item Eee

Marek Seliger

Presentations using LaTeX

Alternative Timing

Page 45: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 45/62

Timings

A Block With TimingsItem Aaay

Item Bee

Item See

Item Eee

\item<1-3> Item Aaay

\item<2-4> Item Bee

\item<3-5> Item See

\item<4-> Item Dee

\item<-4> Item Eee

Marek Seliger

Presentations using LaTeX

Alternative Timing

Page 46: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 46/62

Timings

A Block With Timings

Item Bee

Item See

Item DeeItem Eee

\item<1-3> Item Aaay

\item<2-4> Item Bee

\item<3-5> Item See

\item<4-> Item Dee

\item<-4> Item Eee

Marek Seliger

Presentations using LaTeX

Alternative Timing

Ti i

Page 47: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 47/62

Timings

A Block With Timings

Item See

Item Dee

\item<1-3> Item Aaay

\item<2-4> Item Bee

\item<3-5> Item See

\item<4-> Item Dee

\item<-4> Item Eee

Marek Seliger

Presentations using LaTeX

Colors

C l h B i

Page 48: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 48/62

Colors, the Basics

\setbeamercolor{mycolor}{fg=red,bg=blue}

\begin{beamercolorbox}{mycolor}

some text in red on blue background

\end{beamercolorbox}

\setbeamercolor{mycolor2}{fg=blue,bg=green}

\begin{beamercolorbox}{mycolor2}

some text in blue on grey background

\end{beamercolorbox}

Marek Seliger

Presentations using LaTeX

Colors

C l h B i 2

Page 49: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 49/62

Colors, the Basics 2

fg=red,bg=white

fg=black,bg=red

fg=yellow,bg=black

fg=red,bg=green

are there even more colors?

Marek Seliger

Presentations using LaTeX

Colors

C l Ad d

Page 50: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 50/62

Colors Advanced

You can create your own colors

fg=red!90!blue,bg=white

fg=red!60!blue,bg=whitefg=red!40!blue,bg=white

fg=red!10!blue,bg=white

the number in between determines the mixture

Marek Seliger

Presentations using LaTeX

Colors

C l

Page 51: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 51/62

Colors

Political NonsenseWhen in the course of human events ...

Marek Seliger

Presentations using LaTeX

Colors

Colors

Page 52: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 52/62

Colors

Political NonsenseWhen in the course of human events ...

Marek Seliger

Presentations using LaTeX

Colors

Colors

Page 53: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 53/62

Colors

Political Nonsense

When in the course of  human events ...

Marek Seliger

Presentations using LaTeX

Overprint

Overprint

Page 54: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 54/62

Overprint

Theorem

Here is a theorem

Proof.

Here is the first (bad) proof, in red.

Marek Seliger

Presentations using LaTeX

Overprint

Overprint

Page 55: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 55/62

Overprint

Theorem

Here is a theorem

Proof.

Here is the second (presumably correct) ...

Marek Seliger

Presentations using LaTeX

Overprint

How to do an Overprint

Page 56: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 56/62

How to do an Overprint

Use something like the following. Notice the  onslide  timings.\begin{overprint}

\onslide<1>

\begin{alertblock}{Proof.}

Here is the first (bad) proof, in red.

\end{alertblock}

\onslide<2>

\begin{proof}

Here is the second (presumably correct) ...\end{proof}

\end{overprint}

Marek Seliger

Presentations using LaTeX

Graphics

Include Graphics (JPG)

Page 57: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 57/62

Include Graphics (JPG)

Include a jpg-picture

cern.jpg

Marek Seliger

Presentations using LaTeX

Graphics

Include Graphics (JPG)

Page 58: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 58/62

Include Graphics (JPG)

Include a jpg-picture

cern.jpg

To include an eps-figure, first convert it to pdf using

Linux: ps2pdf figure.eps figure.pdf 

Windows: use AdobeDistiller or print to a pdf-printer

Marek Seliger

Presentations using LaTeX

Page 59: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 59/62

Modi and Themes

Modi for different Media

Page 60: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 60/62

Modi for different Media

Presentation

\mode<presentation>

\mode<presentation>{\usetheme{Berlin}}

Handouts\mode<handout>

{\beamertemplatesolidbackgroundcolor{black!5}}

Text/Article\mode<article>{\usepackage{fullpage}}\

Marek Seliger

Presentations using LaTeX

Modi and Themes

Different themes

Page 61: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 61/62

Different themes

There are different styles for the beamer class:

\usetheme[compress]{Ilmenau}

You can use  a lot  of themes already included in Beamer (see in/usr/share/texmf/tex/latex/beamer/beamertheme*.sty).Try also: Bergen, Antibes, bars, Berlin, JuanLesPins, Madrid,PaloAlto, Singapore, beamerthemesplit, and many more.

Marek Seliger

Presentations using LaTeX

Modi and Themes

FIN

Page 62: ST4 Beamer

8/10/2019 ST4 Beamer

http://slidepdf.com/reader/full/st4-beamer 62/62

Thank you for your attention!

Marek Seliger

Presentations using LaTeX