introduction to beamer · as with any presentation software, e ects can be added to a beamer...

48
Introduction to Beamer Introduction to Beamer Daryl DeFord, David Freund, and Katie Harding Dartmouth College Department of Mathematics and Kresge Library Intermediate L A T E X Workshop Series

Upload: others

Post on 08-Oct-2020

5 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Introduction to Beamer

Daryl DeFord, David Freund, and Katie Harding

Dartmouth CollegeDepartment of Mathematics and Kresge Library

Intermediate LATEX Workshop Series

Page 2: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

1 Introduction

2 Basic CommandsStructureOrganizationEnvironmentsEaster Egg!

3 Styles

4 More Uses

Page 3: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Introduction

What is Beamer and why use it?

• A document class that creates presentations in LATEX

• The resulting .pdf will always appear the same• Easy to use on another computer• The content is never jumbled

• It is easy to include mathematics

• It is pretty

Page 4: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Introduction

What is Beamer and why use it?

• A document class that creates presentations in LATEX

• The resulting .pdf will always appear the same• Easy to use on another computer• The content is never jumbled

• It is easy to include mathematics

• It is pretty

Page 5: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Introduction

What is Beamer and why use it?

• A document class that creates presentations in LATEX

• The resulting .pdf will always appear the same• Easy to use on another computer• The content is never jumbled

• It is easy to include mathematics

• It is pretty

Page 6: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Introduction

What is Beamer and why use it?

• A document class that creates presentations in LATEX

• The resulting .pdf will always appear the same• Easy to use on another computer• The content is never jumbled

• It is easy to include mathematics

• It is pretty

Page 7: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Introduction

What is Beamer and why use it?

• A document class that creates presentations in LATEX

• The resulting .pdf will always appear the same• Easy to use on another computer• The content is never jumbled

• It is easy to include mathematics

• It is pretty

Page 8: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Introduction

What is Beamer and why use it?

• A document class that creates presentations in LATEX

• The resulting .pdf will always appear the same• Easy to use on another computer• The content is never jumbled

• It is easy to include mathematics

• It is pretty

Page 9: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Introduction

Disclaimers

1 Errors and warnings are standard

• Compile often• Do not stress about getting rid of every warning

2 Package conflicts may occur

• Check the Beamer class documentation for details

3 It takes time to compile

Page 10: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Introduction

Disclaimers

1 Errors and warnings are standard• Compile often• Do not stress about getting rid of every warning

2 Package conflicts may occur

• Check the Beamer class documentation for details

3 It takes time to compile

Page 11: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Introduction

Disclaimers

1 Errors and warnings are standard• Compile often• Do not stress about getting rid of every warning

2 Package conflicts may occur

• Check the Beamer class documentation for details

3 It takes time to compile

Page 12: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Introduction

Disclaimers

1 Errors and warnings are standard• Compile often• Do not stress about getting rid of every warning

2 Package conflicts may occur• Check the Beamer class documentation for details

3 It takes time to compile

Page 13: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Introduction

Disclaimers

1 Errors and warnings are standard• Compile often• Do not stress about getting rid of every warning

2 Package conflicts may occur• Check the Beamer class documentation for details

3 It takes time to compile

Page 14: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Structure

Frames

• Every slide is made using the frame environment

• The title of slide is set by using \frametitle{TITLE}

Example

\begin{frame}

\frametitle{Frames}

CONTENT

\end{frame}

Page 15: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Structure

Frames

• Every slide is made using the frame environment

• The title of slide is set by using \frametitle{TITLE}

Example

\begin{frame}

\frametitle{Frames}

CONTENT

\end{frame}

Page 16: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Structure

Frames

• Every slide is made using the frame environment

• The title of slide is set by using \frametitle{TITLE}

Example

\begin{frame}

\frametitle{Frames}

CONTENT

\end{frame}

Page 17: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Organization

Sections and Columns

• The section and subsection

commands can be used toorganize the presentation

• Be sure to compile multipletimes

• The columns environment canlet you make multiple columnson your slide

• Each column is made by thecolumn environment within thecolumns environment

• Each column has its own width

Note

• It is possible to move back and forth between single and multiplecolumns

• The positioning of columns can be specified

Page 18: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Organization

Sections and Columns

• The section and subsection

commands can be used toorganize the presentation

• Be sure to compile multipletimes

• The columns environment canlet you make multiple columnson your slide

• Each column is made by thecolumn environment within thecolumns environment

• Each column has its own width

Note

• It is possible to move back and forth between single and multiplecolumns

• The positioning of columns can be specified

Page 19: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Organization

Sections and Columns

• The section and subsection

commands can be used toorganize the presentation

• Be sure to compile multipletimes

• The columns environment canlet you make multiple columnson your slide

• Each column is made by thecolumn environment within thecolumns environment

• Each column has its own width

Note

• It is possible to move back and forth between single and multiplecolumns

• The positioning of columns can be specified

Page 20: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Organization

Sections and Columns

• The section and subsection

commands can be used toorganize the presentation

• Be sure to compile multipletimes

• The columns environment canlet you make multiple columnson your slide

• Each column is made by thecolumn environment within thecolumns environment

• Each column has its own width

Note

• It is possible to move back and forth between single and multiplecolumns

• The positioning of columns can be specified

Page 21: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Organization

Sections and Columns

• The section and subsection

commands can be used toorganize the presentation

• Be sure to compile multipletimes

• The columns environment canlet you make multiple columnson your slide

• Each column is made by thecolumn environment within thecolumns environment

• Each column has its own width

Note

• It is possible to move back and forth between single and multiplecolumns

• The positioning of columns can be specified

Page 22: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Organization

Sections and Columns

• The section and subsection

commands can be used toorganize the presentation

• Be sure to compile multipletimes

• The columns environment canlet you make multiple columnson your slide

• Each column is made by thecolumn environment within thecolumns environment

• Each column has its own width

Note

• It is possible to move back and forth between single and multiplecolumns

• The positioning of columns can be specified

Page 23: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Environments

Blocks

Blocks

A block is an environment that can be filled with any importantinformation.

Types

Some predefined blocks are definition, theorem, proof, example.

Page 24: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Environments

Blocks

Blocks

A block is an environment that can be filled with any importantinformation.

Types

Some predefined blocks are definition, theorem, proof, example.

Page 25: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Easter Egg!

Overlay Specifications

As with any presentation software, effects can be added to a Beamerpresentation

What are the options?

• pause

• (un)cover

• (in)visible

• only

To what do these apply?

• Font effects (bold, emphasis,etc.)

• Colors

• “Alerts”

• List environments

• Entries of a table

• Lines of an equation

Page 26: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Easter Egg!

Overlay Specifications

As with any presentation software, effects can be added to a Beamerpresentation

What are the options?

• pause: content between pausesappears when the slideadvances

• (un)cover

• (in)visible

• only

To what do these apply?

• Font effects (bold, emphasis,etc.)

• Colors

• “Alerts”

• List environments

• Entries of a table

• Lines of an equation

Page 27: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Easter Egg!

Overlay Specifications

As with any presentation software, effects can be added to a Beamerpresentation

What are the options?

• pause

• (un)cover: the content istransparent except for thespecified frames

• (in)visible

• only

To what do these apply?

• Font effects (bold, emphasis,etc.)

• Colors

• “Alerts”

• List environments

• Entries of a table

• Lines of an equation

Page 28: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Easter Egg!

Overlay Specifications

As with any presentation software, effects can be added to a Beamerpresentation

What are the options?

• pause

• (un)cover

• (in)visible: the content isalways “present” but only(in)visible where specified

• only

To what do these apply?

• Font effects (bold, emphasis,etc.)

• Colors

• “Alerts”

• List environments

• Entries of a table

• Lines of an equation

Page 29: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Easter Egg!

Overlay Specifications

As with any presentation software, effects can be added to a Beamerpresentation

What are the options?

• pause

• (un)cover

• (in)visible

• only: the content is only“present” on the specifiedframes

To what do these apply?

• Font effects (bold, emphasis,etc.)

• Colors

• “Alerts”

• List environments

• Entries of a table

• Lines of an equation

Page 30: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Easter Egg!

Overlay Specifications

As with any presentation software, effects can be added to a Beamerpresentation

What are the options?

• pause

• (un)cover

• (in)visible

• only

To what do these apply?

• Font effects (bold, emphasis,etc.)

• Colors

• “Alerts”

• List environments

• Entries of a table

• Lines of an equation

Page 31: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Easter Egg!

Overlay Specifications

As with any presentation software, effects can be added to a Beamerpresentation

What are the options?

• pause

• (un)cover

• (in)visible

• only

To what do these apply?

• Font effects (bold, emphasis,etc.)

• Colors

• “Alerts”

• List environments

• Entries of a table

• Lines of an equation

Page 32: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Easter Egg!

Overlay Specifications

As with any presentation software, effects can be added to a Beamerpresentation

What are the options?

• pause

• (un)cover

• (in)visible

• only

To what do these apply?

• Font effects (bold, emphasis,etc.)

• Colors

• “Alerts”

• List environments

• Entries of a table

• Lines of an equation

Page 33: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Easter Egg!

Overlay Specifications

As with any presentation software, effects can be added to a Beamerpresentation

What are the options?

• pause

• (un)cover

• (in)visible

• only

To what do these apply?

• Font effects (bold, emphasis,etc.)

• Colors

• “Alerts”

• List environments

• Entries of a table

• Lines of an equation

Page 34: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Basic Commands

Easter Egg!

Overlay Specifications

As with any presentation software, effects can be added to a Beamerpresentation

Material does not have to appear linearly

What are the options?

• pause

• (un)cover

• (in)visible

• only

To what do these apply?

• Font effects (bold, emphasis,etc.)

• Colors

• “Alerts”

• List environments

• Entries of a table

• Lines of an equation

Page 35: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Styles

Customization

Question

How much control over the style do I have? I want SUCH AND SUCH,but I have moral objections to THE OTHER THING.

Answer

If you’re willing to put in the time, you can have whatever you want.

• Create your own

• Use someone else’s template• https://www.overleaf.com/gallery/tagged/presentation

• http://deic.uab.es/~iblanes/beamer_gallery/

• https://www.hartwork.org/beamer-theme-matrix/

Page 36: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Styles

Customization

Question

How much control over the style do I have? I want SUCH AND SUCH,but I have moral objections to THE OTHER THING.

Answer

If you’re willing to put in the time, you can have whatever you want.

• Create your own

• Use someone else’s template• https://www.overleaf.com/gallery/tagged/presentation

• http://deic.uab.es/~iblanes/beamer_gallery/

• https://www.hartwork.org/beamer-theme-matrix/

Page 37: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Styles

Customization

Question

How much control over the style do I have? I want SUCH AND SUCH,but I have moral objections to THE OTHER THING.

Answer

If you’re willing to put in the time, you can have whatever you want.

• Create your own

• Use someone else’s template• https://www.overleaf.com/gallery/tagged/presentation

• http://deic.uab.es/~iblanes/beamer_gallery/

• https://www.hartwork.org/beamer-theme-matrix/

Page 38: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

Styles

Customization

Question

How much control over the style do I have? I want SUCH AND SUCH,but I have moral objections to THE OTHER THING.

Answer

If you’re willing to put in the time, you can have whatever you want.

• Create your own

• Use someone else’s template• https://www.overleaf.com/gallery/tagged/presentation

• http://deic.uab.es/~iblanes/beamer_gallery/

• https://www.hartwork.org/beamer-theme-matrix/

Page 39: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

More Uses

Capabilities of Beamer

• Images and figures are supported

• Bibliographies are supported

• Beamer is compatible with TikZ

Thank you!

Page 40: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

More Uses

Capabilities of Beamer

• Images and figures are supported

• Bibliographies are supported

• Beamer is compatible with TikZ

Thank you!

Page 41: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

More Uses

Capabilities of Beamer

• Images and figures are supported

• Bibliographies are supported

• Beamer is compatible with TikZ

Thank you!

Page 42: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

More Uses

Capabilities of Beamer

• Images and figures are supported

• Bibliographies are supported

• Beamer is compatible with TikZ

Thank you!

Page 43: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

More Uses

Capabilities of Beamer

• Images and figures are supported

• Bibliographies are supported

• Beamer is compatible with TikZ

Thank you!

Page 44: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

More Uses

Capabilities of Beamer

• Images and figures are supported

• Bibliographies are supported

• Beamer is compatible with TikZ

Thank you!

Page 45: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

More Uses

Capabilities of Beamer

• Images and figures are supported

• Bibliographies are supported

• Beamer is compatible with TikZ

Thank you!

Page 46: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

More Uses

Capabilities of Beamer

• Images and figures are supported

• Bibliographies are supported

• Beamer is compatible with TikZ

Thank you!

Page 47: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

More Uses

Capabilities of Beamer

• Images and figures are supported

• Bibliographies are supported

• Beamer is compatible with TikZ

Thank you!

Page 48: Introduction to Beamer · As with any presentation software, e ects can be added to a Beamer presentation What are the options? pause (un)cover: the content is transparent except

Introduction to Beamer

More Uses

Capabilities of Beamer

• Images and figures are supported

• Bibliographies are supported

• Beamer is compatible with TikZ

Thank you!