Skip to content

2008 09 29 creating slideshows with latex

David A Roberts edited this page Jun 9, 2015 · 1 revision

Creating slideshows with LaTeX

LaTeX Beamer is fantastic for this task. This page provides a good introduction to the package. Usually, to produce the actual slideshow, you wou would begin your document with something like the following:

\documentclass{beamer}
\mode{
 \usetheme{Berlin}
 \usecolortheme{crane}
}

Of course, Berlin and crane can be changed to themes of your choice. A gallery of themes can be found here, and examples of color themes can be found in section 17 (page 162 as of version 3.07) of the beamer manual. However, if you would like to print the slideshow as a handout (multiple slides on a single page), you can change the lines given above to:

\documentclass[handout]{beamer}
\mode{
 \usetheme{default}
 \usecolortheme{seagull}
}
\usepackage{pgfpages}
\pgfpagesuselayout{4 on 1}[a4paper,landscape,border shrink=5mm]

And, if you would like to compress everything to an article format, use the following instead:

\documentclass{article}
\usepackage{beamerarticle}