SlideShare a Scribd company logo
1 of 58
Download to read offline
Making Slides
...and doing it with Beamer
RSI 2012 Staff
June 25, 2012
Intro to Beamer
Overlaying Concepts
Sparkle
References
Table of Contents
1 Intro to Beamer
About Beamer
Basic Structure
2 Overlaying Concepts
Specifications
Examples: Lists, Graphics, Tables
3 Adding that Sparkle
Sections
Themes
RSI 2012 Staff Making Slides 1 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
About Beamer
Basic Structure
Table of Contents
1 Intro to Beamer
About Beamer
Basic Structure
2 Overlaying Concepts
Specifications
Examples: Lists, Graphics, Tables
3 Adding that Sparkle
Sections
Themes
RSI 2012 Staff Making Slides 2 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
About Beamer
Basic Structure
What Is Beamer?
Beamer is a flexible LATEX class for making slides and
presentations.
It supports functionality for making PDF slides complete with
colors, overlays, environments, themes, transitions, etc.
Adds a couple new features to the commands you’ve been
working with.
RSI 2012 Staff Making Slides 3 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
About Beamer
Basic Structure
What Is Beamer?
Beamer is a flexible LATEX class for making slides and
presentations.
It supports functionality for making PDF slides complete with
colors, overlays, environments, themes, transitions, etc.
Adds a couple new features to the commands you’ve been
working with.
As you probably guessed, this presentation was made using
the Beamer class.
RSI 2012 Staff Making Slides 3 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
About Beamer
Basic Structure
Document Template: slides.tex
documentclass[pdf]
{beamer}
mode<presentation>{}
%% preamble
title{The title}
subtitle{The subtitle}
author{your name}
begin{document}
%% title frame
begin{frame}
titlepage
end{frame}
%% normal frame
begin{frame}{Frame title}
The body of the frame.
end{frame}
end{document}
athena% make slides.pdf
RSI 2012 Staff Making Slides 4 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
About Beamer
Basic Structure
What would you like in your sandwich?
So what can you do between begin{frame} and
end{frame}?
RSI 2012 Staff Making Slides 5 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
About Beamer
Basic Structure
What would you like in your sandwich?
So what can you do between begin{frame} and
end{frame}?
Pretty much anything you can do in a normal LATEX
document:
RSI 2012 Staff Making Slides 5 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
About Beamer
Basic Structure
What would you like in your sandwich?
So what can you do between begin{frame} and
end{frame}?
Pretty much anything you can do in a normal LATEX
document:
figures, tables, equations, normal text, etc.
RSI 2012 Staff Making Slides 5 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
About Beamer
Basic Structure
Don’t Do This
Here is a well-known formula:n
k=0
k =
n(n + 1)
2
Here is a less well-known, but still useful, formula:
n
k=0
k2
=
n(n + 1)(2n + 1)
6
This is pretty well-known, too:
n
k=0
k3
=
n(n + 1)
2
2
Who knows about this one?n
k=0
k4
=
n(6n4 + 15n3 + 10n2 + 1)
30
Have fun factoring the quartic expression!
RSI 2012 Staff Making Slides 6 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Table of Contents
1 Intro to Beamer
About Beamer
Basic Structure
2 Overlaying Concepts
Specifications
Examples: Lists, Graphics, Tables
3 Adding that Sparkle
Sections
Themes
RSI 2012 Staff Making Slides 7 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
The Rudimentary pause
Watch this slide grow.
RSI 2012 Staff Making Slides 8 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
The Rudimentary pause
Watch this slide grow.
Hello, World!
RSI 2012 Staff Making Slides 8 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
The Rudimentary pause
Watch this slide grow.
Hello, World!
Hello, Mars!
RSI 2012 Staff Making Slides 8 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
The Rudimentary pause
Watch this slide grow.
Hello, World!
Hello, Mars!
Hello, Alpha Centauri!
RSI 2012 Staff Making Slides 8 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
The Rudimentary pause: Backstage
Watch this slide grow.
pause
begin{itemize}
item Hello, World!
pause
item Hello, Mars!
pause
item Hello, Alpha Centauri!
end{itemize}
RSI 2012 Staff Making Slides 9 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
The Specification
Professor: I want you to read the textbook to prepare for
tomorrow’s lecture.
RSI 2012 Staff Making Slides 10 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
The Specification
Professor: I want you to read the textbook to prepare for
tomorrow’s lecture.
Student: Which chapter should I read?
RSI 2012 Staff Making Slides 10 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
The Specification
Professor: I want you to read the textbook to prepare for
tomorrow’s lecture.
Student: Which chapter should I read?
Professor: Specifically, Chapters <1-3, 6, 10->.
RSI 2012 Staff Making Slides 10 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Specificationizing the Rudimentary pause
Watch this slide grow.
RSI 2012 Staff Making Slides 11 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Specificationizing the Rudimentary pause
Watch this slide grow.
Hello, World!
RSI 2012 Staff Making Slides 11 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Specificationizing the Rudimentary pause
Watch this slide grow.
Hello, World!
Hello, Mars!
RSI 2012 Staff Making Slides 11 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Specificationizing the Rudimentary pause
Watch this slide grow.
Hello, World!
Hello, Mars!
Hello, Alpha Centauri!
RSI 2012 Staff Making Slides 11 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Specificationizing the Rudimentary pause: Backstage
Watch this slide grow.
begin{itemize}
item<2-> Hello, World!
item<3-> Hello, Mars!
item<4-> Hello, Alpha Centauri!
end{itemize}
RSI 2012 Staff Making Slides 12 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Useful Commands that Work with Specifications
textbf<>{} controls when to
bold text
only<>{} controls when to
reveal text, occu-
pies NO space oth-
erwise
textit<>{} controls when to
italicize text
uncover<>{} controls when to
reveal text, DOES
occupy space oth-
erwise
color<>[]{} controls when to
change color of
text
alt<>{}{} reveals first argu-
ment when specifi-
cation is true, oth-
erwise reveals sec-
ond argument
alert<>{} controls when to
highlight text (de-
fault red)
item<> controls when an
item is shown
RSI 2012 Staff Making Slides 13 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Lists: The $1,000,000 Question
Which president said, “Most folks are about as happy as they
make up their minds to be”?
Hints:
RSI 2012 Staff Making Slides 14 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Lists: The $1,000,000 Question
Which president said, “Most folks are about as happy as they
make up their minds to be”?
A James Madison
Hints:
James Madison ate broccoli.
RSI 2012 Staff Making Slides 14 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Lists: The $1,000,000 Question
Which president said, “Most folks are about as happy as they
make up their minds to be”?
A James Madison
B Harry Truman
Hints:
James Madison ate broccoli.
Harry Truman drank milk.
RSI 2012 Staff Making Slides 14 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Lists: The $1,000,000 Question
Which president said, “Most folks are about as happy as they
make up their minds to be”?
A James Madison
B Harry Truman
C Abraham Lincoln
Hints:
James Madison ate broccoli.
Harry Truman drank milk.
Abe Lincoln raised bees.
RSI 2012 Staff Making Slides 14 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Lists: The $1,000,000 Question
Which president said, “Most folks are about as happy as they
make up their minds to be”?
A James Madison
B Harry Truman
C Abraham Lincoln
D Calvin Coolidge
Hints:
James Madison ate broccoli.
Harry Truman drank milk.
Abe Lincoln raised bees.
And Cal Coolidge grew silk.
RSI 2012 Staff Making Slides 14 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Lists: The $1,000,000 Question
Which president said, “Most folks are about as happy as they
make up their minds to be”?
C Abraham Lincoln
RSI 2012 Staff Making Slides 14 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Lists: The $1,000,000 Question: Backstage
begin{enumerate}[A]
item<2-5> James Madison
item<3-5> Harry Truman
item<4-> color<6>[rgb]{0,0.6,0}Abraham Lincoln
item<5-5> Calvin Coolidge
end{enumerate}
uncover<1-5>{Hints:}
uncover<2-5>{James Madison ate broccoli.}
uncover<3-5>{Harry Truman drank milk.}
uncover<4-5>{Abe Lincoln raised bees.}
uncover<5-5>{And Cal Coolidge grew silk.}
RSI 2012 Staff Making Slides 15 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Columns and Blocks
a
a
Apologies to Gary Larson
RSI 2012 Staff Making Slides 16 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Columns and Blocks
a
a
Apologies to Gary Larson
Observation 1
Simmons Hall is composed of
metal and concrete.
RSI 2012 Staff Making Slides 16 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Columns and Blocks
a
a
Apologies to Gary Larson
Observation 1
Simmons Hall is composed of
metal and concrete.
Observation 2
Simmons Dormitory is composed
of brick.
RSI 2012 Staff Making Slides 16 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Columns and Blocks
a
a
Apologies to Gary Larson
Observation 1
Simmons Hall is composed of
metal and concrete.
Observation 2
Simmons Dormitory is composed
of brick.
Conclusion
Simmons Hall = Simmons
Dormitory.
RSI 2012 Staff Making Slides 16 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Columns and Blocks: Backstage I
begin{columns}
column{0.5textwidth}
begin{figure}[ht]
begin{center}
includegraphics[height=2in]{LarsonGifted.eps}
~footnote{Apologies to Gary Larson}
end{center}
end{figure}
RSI 2012 Staff Making Slides 17 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Columns and Blocks: Backstage II
column{0.5textwidth}
begin{block}<2->{Observation 1}
Simmons Hall is composed of metal and concrete.
end{block}
begin{block}<3->{Observation 2}
Simmons Dormitory is composed of brick.
end{block}
begin{block}<4->{Conclusion}
Simmons Hall $not=$ Simmons Dormitory.
end{block}
end{columns}
RSI 2012 Staff Making Slides 18 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Math stuff
Easy Theorem
The equation
xn
+ yn
= zn
,
has no integer solutions for n > 2 where x, y, z = 0.
RSI 2012 Staff Making Slides 19 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Math stuff
Easy Theorem
The equation
xn
+ yn
= zn
,
has no integer solutions for n > 2 where x, y, z = 0.
Remark
This problem was first posed in 10, 000 B.C.
RSI 2012 Staff Making Slides 19 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Math stuff
Easy Theorem
The equation
xn
+ yn
= zn
,
has no integer solutions for n > 2 where x, y, z = 0.
Proof
The proof is trivial and left as an exercise for the reader.
Remark
This problem was first posed in 10, 000 B.C.
RSI 2012 Staff Making Slides 19 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Math stuff: Backstage
newtheorem{thm}{Easy Theorem}
newtheorem{pf}{Proof}
newtheorem{rmk}{Remark}
begin{thm}<1->
$$x^n+y^n=z^n,$$
has no integer solutions for $n>2$
where $x,,y,,z,neq,0$.
end{thm}
begin{pf}<3->
The proof is trivial and left as an exercise.
end{pf}
begin{rmk}<2->
This problem was first posed in $10,000$ B.C.
end{rmk}
RSI 2012 Staff Making Slides 20 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Building Tables
Ice Cream Store Location How to Get There
RSI 2012 Staff Making Slides 21 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Building Tables
Ice Cream Store Location How to Get There
Toscanini’s Central Square Just walk!
RSI 2012 Staff Making Slides 21 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Building Tables
Ice Cream Store Location How to Get There
Toscanini’s Central Square Just walk!
Herrell’s Harvard Square Red Line
RSI 2012 Staff Making Slides 21 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Building Tables
Ice Cream Store Location How to Get There
Toscanini’s Central Square Just walk!
Herrell’s Harvard Square Red Line
J.P. Licks Davis Square Red Line
RSI 2012 Staff Making Slides 21 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Building Tables
Ice Cream Store Location How to Get There
Toscanini’s Central Square Just walk!
Herrell’s Harvard Square Red Line
J.P. Licks Davis Square Red Line
Ben & Jerry’s Newbury Street Green Line
RSI 2012 Staff Making Slides 21 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Specifications
Examples
Building Tables: Backstage
begin{table}[bt]
begin{tabular}{|l|c|c|} hline
textbf{Ice Cream Store} & textbf{Location}
& textbf{How to Get There}  hline
uncover<2->{Toscanini’s} & uncover<2->{Central Square}
& uncover<2->{Just walk!} 
uncover<3->{Herrell’s} & uncover<3->{Harvard Square}
& uncover<3->{Red Line} 
uncover<4->{J.P. Licks} & uncover<4->{Davis Square}
& uncover<4->{Red Line} 
uncover<5->{Ben & Jerry’s} & uncover<5->{Newbury Street}
& uncover<5->{Green Line}  hline
end{tabular}
end{table}
RSI 2012 Staff Making Slides 22 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Sections
Themes
Table of Contents
1 Intro to Beamer
About Beamer
Basic Structure
2 Overlaying Concepts
Specifications
Examples: Lists, Graphics, Tables
3 Adding that Sparkle
Sections
Themes
RSI 2012 Staff Making Slides 23 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Sections
Themes
Using Sections
Treat sections just like you would in a paper.
RSI 2012 Staff Making Slides 24 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Sections
Themes
Using Sections
Treat sections just like you would in a paper.
Use tableofcontents[section] to keep audience informed
of your talk’s general plan.
RSI 2012 Staff Making Slides 24 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Sections
Themes
Using Sections
Treat sections just like you would in a paper.
Use tableofcontents[section] to keep audience informed
of your talk’s general plan.
Use AtBeginSection[]{specialframe} to help audience
follow the structure of your talk.
RSI 2012 Staff Making Slides 24 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Sections
Themes
Using Sections: Backstage I
section{Intro to Beamer}
subsection{About Beamer}
subsection[Basic Structure]{Basic Structure}
subsection{How to Compile}
section{Overlaying Concepts}
subsection{Specifications}
subsection[Examples]{Examples: Lists, Graphics, Tables}
section[Sparkle]{Adding that Sparkle}
subsection{Sections}
subsection{Themes}
section*{References}
RSI 2012 Staff Making Slides 25 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Sections
Themes
Using Sections: Backstage II
AtBeginSection[]
{
begin{frame}{Table of Contents}
tableofcontents[currentsection]
end{frame}
}
RSI 2012 Staff Making Slides 26 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Sections
Themes
See, I can get a ToC anywhere!
1 Intro to Beamer
About Beamer
Basic Structure
2 Overlaying Concepts
Specifications
Examples: Lists, Graphics, Tables
3 Adding that Sparkle
Sections
Themes
RSI 2012 Staff Making Slides 27 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Sections
Themes
Pre-customized Templates
To make your presentation use a shiny theme like ours:
Find mode<presentation>{} at the top of your file
Insert usetheme{Warsaw} into the {}
Also available within each Presentation Theme:
Color themes: usecolortheme{colorthemename}
control colors for bullets, background, text, etc.
Inner themes: useinnertheme{innerthemename}
control main title, environments, figures and tables, footnotes,
etc.
Outer themes: useoutertheme{outerthemename}
control head-/foot-lines, sidebars, frame titles, etc.
RSI 2012 Staff Making Slides 28 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Sections
Themes
A Sampling of Themes
General themes:
default Antibes Berlin Copenhagen
Madrid Montpelier Ilmenau Malmoe
CambridgeUS Berkeley Singapore Warsaw
Also available:
Color themes:
beetle, beaver, orchid, whale, dolphin
Inner themes:
circles, rectanges, rounded, inmargin
Outer themes:
infolines, smoothbars, sidebar, split, tree
See The Beamer Theme Matrix
RSI 2012 Staff Making Slides 29 / 30
Intro to Beamer
Overlaying Concepts
Sparkle
References
Good sites to visit for Beamer help
The Beamer User Guide
The Beamer Homepage
A Quick Tutorial
A Beamer Quickstart
A Long Tutorial
LATEX + Beamer Examples
A Beamer Presentation on Beamer
RSI 2012 Staff Making Slides 30 / 30

More Related Content

Recently uploaded

Magic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMagic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMartaLoveguard
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsThierry TROUIN ☁
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Paul Calvano
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Roomishabajaj13
 
Complet Documnetation for Smart Assistant Application for Disabled Person
Complet Documnetation   for Smart Assistant Application for Disabled PersonComplet Documnetation   for Smart Assistant Application for Disabled Person
Complet Documnetation for Smart Assistant Application for Disabled Personfurqan222004
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一Fs
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一z xss
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一Fs
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 
Denver Web Design brochure for public viewing
Denver Web Design brochure for public viewingDenver Web Design brochure for public viewing
Denver Web Design brochure for public viewingbigorange77
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Roomdivyansh0kumar0
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Lucknow
 
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITMgdsc13
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一Fs
 
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With RoomVIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Roomdivyansh0kumar0
 

Recently uploaded (20)

Magic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptxMagic exist by Marta Loveguard - presentation.pptx
Magic exist by Marta Loveguard - presentation.pptx
 
AlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with FlowsAlbaniaDreamin24 - How to easily use an API with Flows
AlbaniaDreamin24 - How to easily use an API with Flows
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
 
Complet Documnetation for Smart Assistant Application for Disabled Person
Complet Documnetation   for Smart Assistant Application for Disabled PersonComplet Documnetation   for Smart Assistant Application for Disabled Person
Complet Documnetation for Smart Assistant Application for Disabled Person
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
 
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 
Denver Web Design brochure for public viewing
Denver Web Design brochure for public viewingDenver Web Design brochure for public viewing
Denver Web Design brochure for public viewing
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
 
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
 
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITM
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
 
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With RoomVIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
 

Featured

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 

Featured (20)

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 

Beamer tutorial

  • 1. Making Slides ...and doing it with Beamer RSI 2012 Staff June 25, 2012
  • 2. Intro to Beamer Overlaying Concepts Sparkle References Table of Contents 1 Intro to Beamer About Beamer Basic Structure 2 Overlaying Concepts Specifications Examples: Lists, Graphics, Tables 3 Adding that Sparkle Sections Themes RSI 2012 Staff Making Slides 1 / 30
  • 3. Intro to Beamer Overlaying Concepts Sparkle References About Beamer Basic Structure Table of Contents 1 Intro to Beamer About Beamer Basic Structure 2 Overlaying Concepts Specifications Examples: Lists, Graphics, Tables 3 Adding that Sparkle Sections Themes RSI 2012 Staff Making Slides 2 / 30
  • 4. Intro to Beamer Overlaying Concepts Sparkle References About Beamer Basic Structure What Is Beamer? Beamer is a flexible LATEX class for making slides and presentations. It supports functionality for making PDF slides complete with colors, overlays, environments, themes, transitions, etc. Adds a couple new features to the commands you’ve been working with. RSI 2012 Staff Making Slides 3 / 30
  • 5. Intro to Beamer Overlaying Concepts Sparkle References About Beamer Basic Structure What Is Beamer? Beamer is a flexible LATEX class for making slides and presentations. It supports functionality for making PDF slides complete with colors, overlays, environments, themes, transitions, etc. Adds a couple new features to the commands you’ve been working with. As you probably guessed, this presentation was made using the Beamer class. RSI 2012 Staff Making Slides 3 / 30
  • 6. Intro to Beamer Overlaying Concepts Sparkle References About Beamer Basic Structure Document Template: slides.tex documentclass[pdf] {beamer} mode<presentation>{} %% preamble title{The title} subtitle{The subtitle} author{your name} begin{document} %% title frame begin{frame} titlepage end{frame} %% normal frame begin{frame}{Frame title} The body of the frame. end{frame} end{document} athena% make slides.pdf RSI 2012 Staff Making Slides 4 / 30
  • 7. Intro to Beamer Overlaying Concepts Sparkle References About Beamer Basic Structure What would you like in your sandwich? So what can you do between begin{frame} and end{frame}? RSI 2012 Staff Making Slides 5 / 30
  • 8. Intro to Beamer Overlaying Concepts Sparkle References About Beamer Basic Structure What would you like in your sandwich? So what can you do between begin{frame} and end{frame}? Pretty much anything you can do in a normal LATEX document: RSI 2012 Staff Making Slides 5 / 30
  • 9. Intro to Beamer Overlaying Concepts Sparkle References About Beamer Basic Structure What would you like in your sandwich? So what can you do between begin{frame} and end{frame}? Pretty much anything you can do in a normal LATEX document: figures, tables, equations, normal text, etc. RSI 2012 Staff Making Slides 5 / 30
  • 10. Intro to Beamer Overlaying Concepts Sparkle References About Beamer Basic Structure Don’t Do This Here is a well-known formula:n k=0 k = n(n + 1) 2 Here is a less well-known, but still useful, formula: n k=0 k2 = n(n + 1)(2n + 1) 6 This is pretty well-known, too: n k=0 k3 = n(n + 1) 2 2 Who knows about this one?n k=0 k4 = n(6n4 + 15n3 + 10n2 + 1) 30 Have fun factoring the quartic expression! RSI 2012 Staff Making Slides 6 / 30
  • 11. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Table of Contents 1 Intro to Beamer About Beamer Basic Structure 2 Overlaying Concepts Specifications Examples: Lists, Graphics, Tables 3 Adding that Sparkle Sections Themes RSI 2012 Staff Making Slides 7 / 30
  • 12. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples The Rudimentary pause Watch this slide grow. RSI 2012 Staff Making Slides 8 / 30
  • 13. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples The Rudimentary pause Watch this slide grow. Hello, World! RSI 2012 Staff Making Slides 8 / 30
  • 14. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples The Rudimentary pause Watch this slide grow. Hello, World! Hello, Mars! RSI 2012 Staff Making Slides 8 / 30
  • 15. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples The Rudimentary pause Watch this slide grow. Hello, World! Hello, Mars! Hello, Alpha Centauri! RSI 2012 Staff Making Slides 8 / 30
  • 16. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples The Rudimentary pause: Backstage Watch this slide grow. pause begin{itemize} item Hello, World! pause item Hello, Mars! pause item Hello, Alpha Centauri! end{itemize} RSI 2012 Staff Making Slides 9 / 30
  • 17. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples The Specification Professor: I want you to read the textbook to prepare for tomorrow’s lecture. RSI 2012 Staff Making Slides 10 / 30
  • 18. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples The Specification Professor: I want you to read the textbook to prepare for tomorrow’s lecture. Student: Which chapter should I read? RSI 2012 Staff Making Slides 10 / 30
  • 19. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples The Specification Professor: I want you to read the textbook to prepare for tomorrow’s lecture. Student: Which chapter should I read? Professor: Specifically, Chapters <1-3, 6, 10->. RSI 2012 Staff Making Slides 10 / 30
  • 20. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Specificationizing the Rudimentary pause Watch this slide grow. RSI 2012 Staff Making Slides 11 / 30
  • 21. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Specificationizing the Rudimentary pause Watch this slide grow. Hello, World! RSI 2012 Staff Making Slides 11 / 30
  • 22. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Specificationizing the Rudimentary pause Watch this slide grow. Hello, World! Hello, Mars! RSI 2012 Staff Making Slides 11 / 30
  • 23. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Specificationizing the Rudimentary pause Watch this slide grow. Hello, World! Hello, Mars! Hello, Alpha Centauri! RSI 2012 Staff Making Slides 11 / 30
  • 24. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Specificationizing the Rudimentary pause: Backstage Watch this slide grow. begin{itemize} item<2-> Hello, World! item<3-> Hello, Mars! item<4-> Hello, Alpha Centauri! end{itemize} RSI 2012 Staff Making Slides 12 / 30
  • 25. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Useful Commands that Work with Specifications textbf<>{} controls when to bold text only<>{} controls when to reveal text, occu- pies NO space oth- erwise textit<>{} controls when to italicize text uncover<>{} controls when to reveal text, DOES occupy space oth- erwise color<>[]{} controls when to change color of text alt<>{}{} reveals first argu- ment when specifi- cation is true, oth- erwise reveals sec- ond argument alert<>{} controls when to highlight text (de- fault red) item<> controls when an item is shown RSI 2012 Staff Making Slides 13 / 30
  • 26. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Lists: The $1,000,000 Question Which president said, “Most folks are about as happy as they make up their minds to be”? Hints: RSI 2012 Staff Making Slides 14 / 30
  • 27. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Lists: The $1,000,000 Question Which president said, “Most folks are about as happy as they make up their minds to be”? A James Madison Hints: James Madison ate broccoli. RSI 2012 Staff Making Slides 14 / 30
  • 28. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Lists: The $1,000,000 Question Which president said, “Most folks are about as happy as they make up their minds to be”? A James Madison B Harry Truman Hints: James Madison ate broccoli. Harry Truman drank milk. RSI 2012 Staff Making Slides 14 / 30
  • 29. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Lists: The $1,000,000 Question Which president said, “Most folks are about as happy as they make up their minds to be”? A James Madison B Harry Truman C Abraham Lincoln Hints: James Madison ate broccoli. Harry Truman drank milk. Abe Lincoln raised bees. RSI 2012 Staff Making Slides 14 / 30
  • 30. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Lists: The $1,000,000 Question Which president said, “Most folks are about as happy as they make up their minds to be”? A James Madison B Harry Truman C Abraham Lincoln D Calvin Coolidge Hints: James Madison ate broccoli. Harry Truman drank milk. Abe Lincoln raised bees. And Cal Coolidge grew silk. RSI 2012 Staff Making Slides 14 / 30
  • 31. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Lists: The $1,000,000 Question Which president said, “Most folks are about as happy as they make up their minds to be”? C Abraham Lincoln RSI 2012 Staff Making Slides 14 / 30
  • 32. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Lists: The $1,000,000 Question: Backstage begin{enumerate}[A] item<2-5> James Madison item<3-5> Harry Truman item<4-> color<6>[rgb]{0,0.6,0}Abraham Lincoln item<5-5> Calvin Coolidge end{enumerate} uncover<1-5>{Hints:} uncover<2-5>{James Madison ate broccoli.} uncover<3-5>{Harry Truman drank milk.} uncover<4-5>{Abe Lincoln raised bees.} uncover<5-5>{And Cal Coolidge grew silk.} RSI 2012 Staff Making Slides 15 / 30
  • 33. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Columns and Blocks a a Apologies to Gary Larson RSI 2012 Staff Making Slides 16 / 30
  • 34. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Columns and Blocks a a Apologies to Gary Larson Observation 1 Simmons Hall is composed of metal and concrete. RSI 2012 Staff Making Slides 16 / 30
  • 35. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Columns and Blocks a a Apologies to Gary Larson Observation 1 Simmons Hall is composed of metal and concrete. Observation 2 Simmons Dormitory is composed of brick. RSI 2012 Staff Making Slides 16 / 30
  • 36. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Columns and Blocks a a Apologies to Gary Larson Observation 1 Simmons Hall is composed of metal and concrete. Observation 2 Simmons Dormitory is composed of brick. Conclusion Simmons Hall = Simmons Dormitory. RSI 2012 Staff Making Slides 16 / 30
  • 37. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Columns and Blocks: Backstage I begin{columns} column{0.5textwidth} begin{figure}[ht] begin{center} includegraphics[height=2in]{LarsonGifted.eps} ~footnote{Apologies to Gary Larson} end{center} end{figure} RSI 2012 Staff Making Slides 17 / 30
  • 38. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Columns and Blocks: Backstage II column{0.5textwidth} begin{block}<2->{Observation 1} Simmons Hall is composed of metal and concrete. end{block} begin{block}<3->{Observation 2} Simmons Dormitory is composed of brick. end{block} begin{block}<4->{Conclusion} Simmons Hall $not=$ Simmons Dormitory. end{block} end{columns} RSI 2012 Staff Making Slides 18 / 30
  • 39. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Math stuff Easy Theorem The equation xn + yn = zn , has no integer solutions for n > 2 where x, y, z = 0. RSI 2012 Staff Making Slides 19 / 30
  • 40. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Math stuff Easy Theorem The equation xn + yn = zn , has no integer solutions for n > 2 where x, y, z = 0. Remark This problem was first posed in 10, 000 B.C. RSI 2012 Staff Making Slides 19 / 30
  • 41. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Math stuff Easy Theorem The equation xn + yn = zn , has no integer solutions for n > 2 where x, y, z = 0. Proof The proof is trivial and left as an exercise for the reader. Remark This problem was first posed in 10, 000 B.C. RSI 2012 Staff Making Slides 19 / 30
  • 42. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Math stuff: Backstage newtheorem{thm}{Easy Theorem} newtheorem{pf}{Proof} newtheorem{rmk}{Remark} begin{thm}<1-> $$x^n+y^n=z^n,$$ has no integer solutions for $n>2$ where $x,,y,,z,neq,0$. end{thm} begin{pf}<3-> The proof is trivial and left as an exercise. end{pf} begin{rmk}<2-> This problem was first posed in $10,000$ B.C. end{rmk} RSI 2012 Staff Making Slides 20 / 30
  • 43. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Building Tables Ice Cream Store Location How to Get There RSI 2012 Staff Making Slides 21 / 30
  • 44. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Building Tables Ice Cream Store Location How to Get There Toscanini’s Central Square Just walk! RSI 2012 Staff Making Slides 21 / 30
  • 45. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Building Tables Ice Cream Store Location How to Get There Toscanini’s Central Square Just walk! Herrell’s Harvard Square Red Line RSI 2012 Staff Making Slides 21 / 30
  • 46. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Building Tables Ice Cream Store Location How to Get There Toscanini’s Central Square Just walk! Herrell’s Harvard Square Red Line J.P. Licks Davis Square Red Line RSI 2012 Staff Making Slides 21 / 30
  • 47. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Building Tables Ice Cream Store Location How to Get There Toscanini’s Central Square Just walk! Herrell’s Harvard Square Red Line J.P. Licks Davis Square Red Line Ben & Jerry’s Newbury Street Green Line RSI 2012 Staff Making Slides 21 / 30
  • 48. Intro to Beamer Overlaying Concepts Sparkle References Specifications Examples Building Tables: Backstage begin{table}[bt] begin{tabular}{|l|c|c|} hline textbf{Ice Cream Store} & textbf{Location} & textbf{How to Get There} hline uncover<2->{Toscanini’s} & uncover<2->{Central Square} & uncover<2->{Just walk!} uncover<3->{Herrell’s} & uncover<3->{Harvard Square} & uncover<3->{Red Line} uncover<4->{J.P. Licks} & uncover<4->{Davis Square} & uncover<4->{Red Line} uncover<5->{Ben & Jerry’s} & uncover<5->{Newbury Street} & uncover<5->{Green Line} hline end{tabular} end{table} RSI 2012 Staff Making Slides 22 / 30
  • 49. Intro to Beamer Overlaying Concepts Sparkle References Sections Themes Table of Contents 1 Intro to Beamer About Beamer Basic Structure 2 Overlaying Concepts Specifications Examples: Lists, Graphics, Tables 3 Adding that Sparkle Sections Themes RSI 2012 Staff Making Slides 23 / 30
  • 50. Intro to Beamer Overlaying Concepts Sparkle References Sections Themes Using Sections Treat sections just like you would in a paper. RSI 2012 Staff Making Slides 24 / 30
  • 51. Intro to Beamer Overlaying Concepts Sparkle References Sections Themes Using Sections Treat sections just like you would in a paper. Use tableofcontents[section] to keep audience informed of your talk’s general plan. RSI 2012 Staff Making Slides 24 / 30
  • 52. Intro to Beamer Overlaying Concepts Sparkle References Sections Themes Using Sections Treat sections just like you would in a paper. Use tableofcontents[section] to keep audience informed of your talk’s general plan. Use AtBeginSection[]{specialframe} to help audience follow the structure of your talk. RSI 2012 Staff Making Slides 24 / 30
  • 53. Intro to Beamer Overlaying Concepts Sparkle References Sections Themes Using Sections: Backstage I section{Intro to Beamer} subsection{About Beamer} subsection[Basic Structure]{Basic Structure} subsection{How to Compile} section{Overlaying Concepts} subsection{Specifications} subsection[Examples]{Examples: Lists, Graphics, Tables} section[Sparkle]{Adding that Sparkle} subsection{Sections} subsection{Themes} section*{References} RSI 2012 Staff Making Slides 25 / 30
  • 54. Intro to Beamer Overlaying Concepts Sparkle References Sections Themes Using Sections: Backstage II AtBeginSection[] { begin{frame}{Table of Contents} tableofcontents[currentsection] end{frame} } RSI 2012 Staff Making Slides 26 / 30
  • 55. Intro to Beamer Overlaying Concepts Sparkle References Sections Themes See, I can get a ToC anywhere! 1 Intro to Beamer About Beamer Basic Structure 2 Overlaying Concepts Specifications Examples: Lists, Graphics, Tables 3 Adding that Sparkle Sections Themes RSI 2012 Staff Making Slides 27 / 30
  • 56. Intro to Beamer Overlaying Concepts Sparkle References Sections Themes Pre-customized Templates To make your presentation use a shiny theme like ours: Find mode<presentation>{} at the top of your file Insert usetheme{Warsaw} into the {} Also available within each Presentation Theme: Color themes: usecolortheme{colorthemename} control colors for bullets, background, text, etc. Inner themes: useinnertheme{innerthemename} control main title, environments, figures and tables, footnotes, etc. Outer themes: useoutertheme{outerthemename} control head-/foot-lines, sidebars, frame titles, etc. RSI 2012 Staff Making Slides 28 / 30
  • 57. Intro to Beamer Overlaying Concepts Sparkle References Sections Themes A Sampling of Themes General themes: default Antibes Berlin Copenhagen Madrid Montpelier Ilmenau Malmoe CambridgeUS Berkeley Singapore Warsaw Also available: Color themes: beetle, beaver, orchid, whale, dolphin Inner themes: circles, rectanges, rounded, inmargin Outer themes: infolines, smoothbars, sidebar, split, tree See The Beamer Theme Matrix RSI 2012 Staff Making Slides 29 / 30
  • 58. Intro to Beamer Overlaying Concepts Sparkle References Good sites to visit for Beamer help The Beamer User Guide The Beamer Homepage A Quick Tutorial A Beamer Quickstart A Long Tutorial LATEX + Beamer Examples A Beamer Presentation on Beamer RSI 2012 Staff Making Slides 30 / 30