Beamer – Is There a Gallery of Beamer Outer Themes Available?

beamer

I want to see and compare all the beamer outer themes. Something like this.

Is this available somewhere?

I know I can generate examples myself, but I prefer to use something already available.

Best Answer

You'll find a list, including images, of all the outer themes which ship with beamer, in section 16.2 Outer Themes of the beamer user guide.

Here a short overview with just the images without all the documentation between them:

enter image description here

Note to self:

The code for the image

\documentclass[varwidth,border=1pt]{standalone}

\usepackage{graphicx}
\usepackage{pgffor}

\begin{document}
\ttfamily

\foreach \macro in {default,infolines,miniframes,shadow,sidebar,smoothbars,smoothtree,split,tree}{

  \macro
  
  \includegraphics[width=5cm,page=1]{beamerugoutertheme\macro}
  \includegraphics[width=5cm,page=2]{beamerugoutertheme\macro}
}

\end{document}