A beamer template

A LaTeX beamer template according to the 2021 style guide of Friedrich-Alexander-Universität Erlangen-Nürnberg.

I created this template in the fall of 2021 to be consistent with the new corporate style of FAU since the provided templates back then were created in Microsoft PowerPoint. After submitting it to the FAU corporate team it became the official LaTeX template of the university. The old template was created by Balthasar Reuther, which after he left FAU was polished by me and can still be accessed on GitHub. The new template is written from scratch but reuses some elements and strategies from the old one.

Where can I find fau-beamer?

There are different ways to use the template, we go over them in the following.

Via GitHub

The easiest way to use fau-beamer is to checkout the GitHub repo. It is part of the FAU-AMMN GitHub organization of our chair but is managed and maintained by me, so if you have any questions or requests you can either open an issue in the repo or write me a mail.

Also any changes or modifications to the template are incorporated in this repo, therefore it always provides the newest version.

Via Overleaf

The template is also available on the overleaf gallery, which makes it very easy to use for collaboration. You can access the template here.

Note however that I can not update this template directly and every change to it, has to be approved by overleaf. For this reason it is most likely not the newest version of the template. This shouldn’t matter too much, however, if you want the most updated version you should probably checkout the GitHub repo.

Via the FAU website

You can also download the LaTeX code from the corporate website of FAU, here. The version provided their is probably the most outdated. This is due to the fact that I can not directly influence any uploads to this website. Nevertheless, I always try to keep the version as close as possible to the actual one.

Usage and Most Important Options

In the following we briefly explain some important features. The provided example file in the repo provides a mor extensive documentation.

Choosing The Institute

The option institute specifies which institute template should be used. For example

\usepackage[institute=FAU]{styles/beamerthemefau}

can be used to use the generic FAU style. The following style are available

  • [institute=FAU]: Generic style for FAU,

  • [institute=Med]: style for Medizinische Fakultät,

  • [institute=Nat]: style for Naturwissenschaftliche Fakultät,

  • [institute=Phil]: style for Philosophische Fakultät und Fachbereich Theologie,

  • [institute=RW]: style for Rechts- und Wirtschaftswissenschaftliche Fakultät,

  • [institute=Tech]: style for Technische Fakultät

This option influences

  1. the color scheme,

  2. the left word mark for the title page

see the sections on colors and logos. The default option is [institute=FAU].

Colors

The template employs the color scheme as specified by the FAU style guide. Each institute has two colors a base color and a dark base color. These colors are available via the commands \BaseColor and \BaseDarkColor

Institute \BaseColor RGB \BaseDarkColor RGB
FAU 0,47,108 4,30,66
Med 0, 163, 224 0, 97, 160
Nat 67, 176, 42 34, 136, 72
Phil 255, 184, 28 232, 119, 34
RW 200, 16, 46 151,27,47
Tech 119, 159, 181 65, 116, 141

Logos

The following files

  • FAUWortmarkeBlau.pdf
  • FAUWortmarkeWhite.pdf

are the same for every institute and are therefore placed directly in the /template-art folder. The files for each institute are now placed in the subfolder /<Institute>, where you find

  • <Institute>Kennung.pdf
  • <Institute>KennungWhite.pdf
  • <Institute>Title.jpg

Implementation Details

I plan to note down some thoughts and considerations for the implementation of this template. This might help me and others for future projects. It is empty right now, but I might write down something soon.

Tips n’ Tricks

Some hacks and tricks that are not in the scope of the regular tutorial.

Table of Contents

If you want to print a table of contents as a overview at the start of your slides you might do something like this

\begin{frame}{Table of contents}
\tableofcontents
\end{frame}

which gives the following result

However, this does not look like the table of content view, at the start of a section

where also only the current section is not grayed out. In order to achieve the same look for the main overview toc, we put the respective frame within a group that sets the necessary properties. The following code snippet can be used to do this

{
\setbeamertemplate{headline}[headline title]
\setbeamertemplate{sidebar left}[sidebar title theme]
\setbeamertemplate{frametitle}[frametitle title]
\setbeamertemplate{footline}[footline title]
\setbeamercolor{background canvas}{bg=BaseColor}
\setbeamercolor{section in toc}{fg=TitleFont}
\setbeamercolor{subsection in toc}{fg=TitleFont}

% toc frame
\begin{frame}{-}
\usebeamerfont{title}%
\hypersetup{linkcolor=TitleFont}
\tableofcontents
\end{frame}
}

Sometimes colored links and especially colored citations are a problem because they are the same color as their background. E.g., when you use \cite in the title of a block it is not properly visible. Furthermore you can not just use \textcolor or something similar.

In order to change the color such text locally you need to redefine the setup within a group,

{\hypersetup{citecolor=white}{\cite{--}}}

If you forget the brackets { } to put everything in a group, the color will also changes in other places.

For reusability, you can use this strategy to define your commands like so

\newcommand{\colorcite}[3]{{\hypersetup{citecolor=#1}{\cite[#2]{#3}}}}

where the first argument is the color, the second additional options for the \cite command and the third one the reference you want to cite.

Updated: