208
Basics Math, etc. Graphics Resources Beamer AL A T E X class for making presentations Miklos Z. Racz UC Berkeley Berkeley, January 28, 2011. Miklos Z. Racz Beamer

Beamer - A LaTeX class for making presentations

  • Upload
    others

  • View
    25

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

BeamerA LATEX class for making presentations

Miklos Z. Racz

UC Berkeley

Berkeley, January 28, 2011.

Miklos Z. Racz Beamer

Page 2: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Main message

◮ Beamer looks nice

Miklos Z. Racz Beamer

Page 3: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Main message

◮ Beamer looks nice,especially if you have lots of math in your presentation

Miklos Z. Racz Beamer

Page 4: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Main message

◮ Beamer looks nice,especially if you have lots of math in your presentation

◮ Beamer provides great structure automatically

Miklos Z. Racz Beamer

Page 5: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Main message

◮ Beamer looks nice,especially if you have lots of math in your presentation

◮ Beamer provides great structure automatically,but also gives great flexibility

Miklos Z. Racz Beamer

Page 6: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Main message

◮ Beamer looks nice,especially if you have lots of math in your presentation

◮ Beamer provides great structure automatically,but also gives great flexibility

◮ Beamer is easy to learn◮ Just sit down and play with it◮ Lots of resources online

Miklos Z. Racz Beamer

Page 7: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Outline

Basics

Math, lists, columns, etc.

GraphicsImporting GraphicsUsing BeamerAnimations

Resources

Miklos Z. Racz Beamer

Page 8: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Outline

Basics

Math, lists, columns, etc.

GraphicsImporting GraphicsUsing BeamerAnimations

Resources

Miklos Z. Racz Beamer

Page 9: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Basic setup

\documentclass{beamer}...\usetheme{Berkeley}...\begin{document}

\begin{frame}...\end{frame}

\end{document}

Miklos Z. Racz Beamer

Page 10: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Styles

There are many style templates; Sebastian Pipping created theBeamer Theme Matrix:

Miklos Z. Racz Beamer

Page 11: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Styles

There are many style templates; Sebastian Pipping created theBeamer Theme Matrix:

And you can also specify anything you want yourself!

Miklos Z. Racz Beamer

Page 12: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Title page

\documentclass{beamer}...\usetheme{Berkeley}...\title{Beamer}\author{Miklos Z. Racz}\subtitle{{\small A \LaTeX\ class for making presentation s}}\date{Berkeley, January 28, 2011.}\institute{UC Berkeley}...\begin{document}

\frame{\titlepage}

\begin{frame}...\end{frame}

\end{document}

Miklos Z. Racz Beamer

Page 13: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Table of contents

...\begin{document}

\frame{\titlepage}

\frame{\tableofcontents}

\section{Intro}...\section{Model}\subsection{2 particles}...\subsection{3 particles}...\section{Results}...\end{document}

Miklos Z. Racz Beamer

Page 14: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Frames

Frames are the basic “building blocks” of presentations.

You can do basically anything (and more) in frames that youcan do in a simple LATEX document.

eiπ + 1 = 0

Frames are the basic ‘‘building blocks’’ of presentations.

\medskip

You can do basically anything (and more) in frames that youcan do in a simple \LaTeX\ document.\begin{equation * }eˆ{i\pi} + 1 = 0\end{equation * }

Miklos Z. Racz Beamer

Page 15: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Simple example of flexibility

!

Miklos Z. Racz Beamer

Page 16: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Simple example of flexibility

To delete these:

\setbeamertemplate {navigation symbols }{}\setbeamertemplate {footline }{}

!

Miklos Z. Racz Beamer

Page 17: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Outline

Basics

Math, lists, columns, etc.

GraphicsImporting GraphicsUsing BeamerAnimations

Resources

Page 18: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

MathYou can do everything here that you can in LATEX. Inline math:d (x , y) ≤ d (x , z) + d (z, y). One of Ramanajun’s famousidentities:

=2√

29801

∞∑

k=0

(4k)! (1103 + 26390k)

(k !)4 3964k.

Math environments work just the same:

DefinitionA prime number is a natural number that has exactly twodistinct natural number divisors: 1 and itself.

\begin{definition}A \emph{prime number} is a natural number thathas exactly two distinct natural number divisors:1 and itself.\end{definition}

Page 19: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Theorems, proofsTheoremThe value of the Gaussian integral is

√π:

∞∫

−∞

e−x2dx =

√π.

Proof.Square the Gaussian integral and switch to polar coordinates:

∞∫

−∞

e−x2dx

2

=

∞∫

−∞

∞∫

−∞

e−(x2+y2)dxdy

=

2π∫

0

∞∫

0

e−r2rdrdθ = 2π

∞∫

0

re−r2dr = π.

Page 20: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Lists

It’s easy to make lists:◮ Apple◮ Orange◮ Banana

It’s also possible to pause:

Page 21: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Lists

It’s easy to make lists:◮ Apple◮ Orange◮ Banana

It’s also possible to pause:

◮ Apple

Page 22: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Lists

It’s easy to make lists:◮ Apple◮ Orange◮ Banana

It’s also possible to pause:

◮ Apple◮ Orange

Page 23: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Lists

It’s easy to make lists:◮ Apple◮ Orange◮ Banana

It’s also possible to pause:

◮ Apple◮ Orange◮ Banana

Page 24: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Lists

\begin{itemize}\item {\color{red} Apple}\item {\color{orange} Orange}\item {\color{yellow} Banana}\end{itemize}

\begin{itemize}\item {\color{red} Apple}\pause\item {\color{orange} Orange}\pause\item {\color{yellow} Banana}\end{itemize}

Page 25: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Lists

You can do it in an even different way:

◮ Apple

Page 26: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Lists

You can do it in an even different way:

◮ Apple◮ Orange

◮ Blueberry

Page 27: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Lists

You can do it in an even different way:

◮ Apple◮ Orange◮ Banana◮ Blueberry

Page 28: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Lists

You can do it in an even different way:

◮ Apple◮ Orange

◮ Blueberry◮ Blackberry

Page 29: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Lists

\begin{itemize}\item<1-> {\color{red} Apple}\item<2-> {\color{orange} Orange}\item<3> {\color{yellow} Banana}\item<2-> {\color{blue} Blueberry}\item<4-> Blackberry\end{itemize}

Page 30: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Columns

...left column...

...left column...

...left column...

...right column...

...right column...

...right column...

This is in the middle at the bottom.

Page 31: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Columns

\begin{columns}\column{0.5\textwidth}\begin{center}

...left column...\\

...left column...\\

...left column...\end{center}

\column{0.5\textwidth}\begin{center}

...right column...\\

...right column...\\

...right column...\end{center}

\end{columns}

\vfill

\begin{center}This is in the middle at the bottom.\end{center}

Page 32: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Outline

Basics

Math, lists, columns, etc.

GraphicsImporting GraphicsUsing BeamerAnimations

Resources

Page 33: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Outline

Basics

Math, lists, columns, etc.

GraphicsImporting GraphicsUsing BeamerAnimations

Resources

Page 34: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Pictures from campus

You can see Evans Hallto the right...

Page 35: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Pictures from campus

You can see Evans Hallto the right...

...and the Campanileto the left...

Page 36: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Including image files

It’s easy to include image files:

\includegraphics[width=0.9\textwidth]{evans.eps}

Page 37: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Including image files

It’s easy to include image files:

\includegraphics[width=0.9\textwidth]{evans.eps}

Note: be careful with file formats.If you compile with latex, you can only use .eps.If you compile with pdflatex, then you can use .jpg, .png, .pdf(but cannot use .eps).

Page 38: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Including image files

It’s easy to include image files:

\includegraphics[width=0.9\textwidth]{evans.eps}

Note: be careful with file formats.If you compile with latex, you can only use .eps.If you compile with pdflatex, then you can use .jpg, .png, .pdf(but cannot use .eps).

(But these are not big issues.)

Page 39: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Outline

Basics

Math, lists, columns, etc.

GraphicsImporting GraphicsUsing BeamerAnimations

Resources

Page 40: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Making figures in LATEX/Beamer

There are many ways to make figures inside LATEX. My favoriteis using

PSTricks

which is a set of macros that allows you to draw your ownPostScript-based drawing directly inside LATEX.

(Add \usepackage {pstricks } to the preamble of your LATEXfile.)

Page 41: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

A simple example

vrope

cwalkway

Figure: You can create captions too.

Page 42: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

The code is not horrible at all

\def\ManLeft{%%% Little man going left\psline[linewidth=1pt](0,0)(0.3,0.5) % left leg\psline[linewidth=1pt](0.6,0)(0.3,0.5) % right leg\psline[linewidth=1pt](0.3,0.5)(0.3,1.2) % body\psline[linewidth=1pt](0.3,1)(0,0.7) % arm\pscircle[linewidth=1pt](0.3,1.4){0.2} % head}\def\ManRight{%%% Little man going right\psline[linewidth=1pt](2.2,2.2)(1.4,1.4) % right arm\psline[linewidth=1pt](1.4,1.4)(1.52,1.76) % upper bod y\psline[linewidth=1pt](1.4,1.4)(1.04,1.16) % left arm\psline[linewidth=1pt](1.4,1.4)(1.16,0.92) % lower bod y\psline[linewidth=1pt](1.16,0.92)(0.86,0.5) % right le g\psline[linewidth=1pt](1.16,0.92)(0.62,0.74) % left le g\pscircle[linewidth=1pt](1.58,1.94){0.1897} % head}

Page 43: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

The code is not horrible at all

\begin{figure}[ht]\centering\begin{pspicture}(12,6)%% Rope\psline[linewidth=2pt]{->}(1,5)(12,5)\uput * {0.3}[90]{0}(11.5,5){\huge{$v$}}\uput * {0.3}[90]{0}(2,5){\large{rope}}%% People going right\uput * {0.2}[270]{0}(1,3){\ManRight}\uput * {0.2}[270]{0}(2,3){\ManRight}\uput * {0.2}[270]{0}(5,3){\ManRight}\uput * {0.2}[270]{0}(8,3){\ManRight}%% Walkway\psline[linewidth=2pt]{<-}(1,1)(12,1)\uput * {0.3}[90]{0}(1.5,1){\huge{$c$}}\uput * {0.3}[90]{0}(10,0){\large{walkway}}%% People going left\uput * {0.15}[90]{0}(2.2,1){\ManLeft}\uput * {0.15}[90]{0}(3,1){\ManLeft}\uput * {0.15}[90]{0}(3.8,1){\ManLeft}\uput * {0.15}[90]{0}(5,1){\ManLeft}\uput * {0.15}[90]{0}(8,1){\ManLeft}\uput * {0.15}[90]{0}(10,1){\ManLeft}\end{pspicture}\caption{You can create captions too.}\end{figure}

Page 44: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

A more complicated figure using PSTricks

(0,0,0) (1,-2,1)

(2,-1,-1)(1,1,-2)

(-1,2,-1)

(-2,1,1) (-1,-1,2)

(2,-4,2)

(4,-2,-2)(2,2,-4)

(-2,4,-2)

(-4,2,2) (-2,-2,4)

(3,-3,0)

(3,0,-3)

(0,3,-3)

(-3,3,0)

(-3,0,3)

(0,-3,3)

w(0)

w(0)

w(0)

w(−2)

w(−2)

w(−2)

w(−1)

w(−1)w(−1)

w(−1)

w(−1)

w(−1)

w(−4)

w(1)

w(−3)

w(2)w(−3)w(1)w(−4)

w(1)

w(−3)

w(2)

w(−3)

w(1)

w(−4) w(1) w(−3) w(2)

w(−3)

w(1) w(0)

w(0)

w(−2)

w(−2)w(0)

w(0)

w(−2)

w(−2)

w(0)

w(0) w(−2)

w(−2)

Page 45: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Outline

Basics

Math, lists, columns, etc.

GraphicsImporting GraphicsUsing BeamerAnimations

Resources

Page 46: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Animations

You can make nice animations in PSTricks as well.

The following two slides were made by Marton Balazs. Atutorial of how they were made (plus LATEX source code) can befound on his homepage:

http://www.math.bme.hu/ ˜ balazs/aniexl.html

The slides were originally part of a popularizing talk he gave onmodeling traffic flow.

Page 47: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 48: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 49: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 50: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 51: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 52: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 53: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 54: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 55: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 56: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 57: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 58: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 59: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 60: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 61: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 62: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 63: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 64: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 65: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 66: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 67: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 68: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 69: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 70: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 71: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 72: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 73: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 74: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 75: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 76: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 77: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 78: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 79: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 80: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 81: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 82: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 83: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 84: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 85: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 86: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 87: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 88: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 89: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 90: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 91: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 92: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 93: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 94: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 95: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 96: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 97: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

Page 98: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

We notice the slowly moving cars à have to brake hard.

The end of the traffic jam is sharp.

Page 99: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Emergence of traffic jams

We notice the slowly moving cars à have to brake hard.

The end of the traffic jam is sharp.

This is part of the reason freeways are dangerous.

Page 100: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 101: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 102: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 103: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 104: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 105: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 106: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 107: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 108: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 109: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 110: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 111: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 112: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 113: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 114: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 115: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 116: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 117: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 118: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 119: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 120: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 121: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 122: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 123: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 124: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 125: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 126: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 127: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 128: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 129: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 130: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 131: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 132: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 133: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 134: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 135: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 136: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 137: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 138: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 139: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 140: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 141: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 142: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 143: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 144: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 145: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 146: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 147: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 148: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 149: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 150: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 151: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 152: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 153: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 154: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 155: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 156: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 157: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 158: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 159: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 160: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 161: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 162: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 163: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 164: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 165: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 166: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 167: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 168: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 169: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 170: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 171: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 172: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 173: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 174: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 175: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 176: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 177: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 178: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 179: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 180: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 181: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 182: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 183: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 184: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 185: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 186: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 187: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 188: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 189: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 190: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Page 191: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Long and slow acceleration for cars in the back

Page 192: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Long and slow acceleration for cars in the back

Dissolution of the jam is not sharp.

Page 193: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Long and slow acceleration for cars in the back

Dissolution of the jam is not sharp.

Page 194: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Long and slow acceleration for cars in the back

Dissolution of the jam is not sharp.

Page 195: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Long and slow acceleration for cars in the back

Dissolution of the jam is not sharp.

Page 196: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Long and slow acceleration for cars in the back

Dissolution of the jam is not sharp.

Page 197: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Long and slow acceleration for cars in the back

Dissolution of the jam is not sharp.

Page 198: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Long and slow acceleration for cars in the back

Dissolution of the jam is not sharp.

Page 199: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Long and slow acceleration for cars in the back

Dissolution of the jam is not sharp.

Page 200: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Long and slow acceleration for cars in the back

Dissolution of the jam is not sharp.

Page 201: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources From files Using Beamer Animations

Dissolution of traffic jams

Long and slow acceleration for cars in the back

Dissolution of the jam is not sharp.

Page 202: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Outline

Basics

Math, lists, columns, etc.

GraphicsImporting GraphicsUsing BeamerAnimations

Resources

Page 203: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Resources

The internet is full of resources; perhaps the two best startingpoints are:

◮ Beamer Wikipedia pageand the links and references found here

◮ Beamer user guide

[Just click]

Page 204: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

Resources (cont’d)

This presentation is not meant to be a tutorial; it’s goal is toshowcase that Beamer exists and that it is very useful.

However, many people have created short tutorials. Here are afew that are not linked from the Beamer Wiki page:

◮ by Charles T. Batts◮ by Amber M. Smith◮ by Steven G. Wicker

[Just click]

Page 205: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

General LATEX resources

◮ LATEX Wikibooks—very useful!!

◮ The Comprehensive LATEX Symbol List

◮ Detexify: LATEX symbol classifier – perfect when you can’tremember the code for a character and it would take toolong to look it up in symbols-a4.pdf

[Just click]

Page 206: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

PSTricks resources

◮ PSTricks user’s guide

◮ Marton Balazs’ intro to animations using PSTricks

[Just click]

Page 207: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources

LATEX DeCal course

Math 98/198: LATEX for Math/Science

Evans M 5-7p

http://www.decal.org/1585

Page 208: Beamer - A LaTeX class for making presentations

Basics Math, etc. Graphics Resources