% ..............................................................................
% Demo of the fau-beamer template.
%
% Copyright 2022 by Tim Roith <tim.roith@fau.de>
%
% This program can be redistributed and/or modified under the terms
% of the GNU Public License, version 2.
%
% ------------------------------------------------------------------------------
\documentclass[final]{beamer}
% ========================================================================================
% Theme: inner, outer, font and colors
% ----------------------------------------------------------------------------------------
\usepackage[institute=Nat,
%ExtraLogo = template-art/DepartMath.pdf,
%WordMark=None
aspectratio=169,
size=18
]{styles/beamerthemefau}
% ----------------------------------------------------------------------------------------
% Input and output encoding
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
% ----------------------------------------------------------------------------------------
% Language settings
\usepackage[english]{babel}
% ========================================================================================
% Fonts
% - Helvet is loaded by styles/beamerfonts
% - We use serif for math environements
% - isomath is used for upGreek letters
% ----------------------------------------------------------------------------------------
\usepackage{isomath}
\usefonttheme[onlymath]{serif}
\usepackage{exscale}
\usepackage{anyfontsize}
\setbeamercolor{alerted text}{fg=BaseColor}
% ----------------------------------------------------------------------------------------
% custom commands for symbols
\usepackage{styles/symbols}
% ========================================================================================
% Setup for Titlepage
% ----------------------------------------------------------------------------------------
\title[fau-beamer]{The NEW fau-beamer Template}
\subtitle{The \LaTeX{} template according to the 2021 FAU corporate guide}
\author[T. Roith]{Tim Roith}
\institute[FAU]{Friedrich-Alexander Universität Erlangen-Nürnberg, Department Mathematik}
\date{\today}
% ========================================================================================
% Bibliography
% ----------------------------------------------------------------------------------------
\usepackage{csquotes}
\usepackage[style=alphabetic, %alternatively: numeric, numeric-comp, and other from biblatex
defernumbers=true,
useprefix=true,%
giveninits=true,%
hyperref=true,%
autocite=inline,%
maxcitenames=5,%
maxbibnames=20,%
uniquename=init,%
sortcites=true,% sort citations when multiple entries are passed to one cite command
doi=true,%
isbn=false,%
url=false,%
eprint=false,%
backend=biber%
]{biblatex}
\addbibresource{bibliography.bib}
\setbeamertemplate{bibliography item}[text]
% ========================================================================================
% Hyperref and setup
% ----------------------------------------------------------------------------------------
\usepackage{hyperref}
\hypersetup{
colorlinks = true,
final=true,
plainpages=false,
pdfstartview=FitV,
pdftoolbar=true,
pdfmenubar=true,
pdfencoding=auto,
psdextra,
bookmarksopen=true,
bookmarksnumbered=true,
breaklinks=true,
linktocpage=true,
urlcolor=BaseColor,
citecolor=BaseColor,
linkcolor=BaseColor
}
% ========================================================================================
% Additional packages
% ----------------------------------------------------------------------------------------
% ========================================================================================
% Various custom commands
% ----------------------------------------------------------------------------------------
\pdfsuppresswarningpagegroup=1 %solves the PDF inclusion problem
% Change color for cite locally
\newcommand{\colorcite}[3]{{\hypersetup{citecolor=#1}{\cite[#2]{#3}}}}
% ----------------------------------------------------------------------------------------
% ========================================================================================
% The main document
% ----------------------------------------------------------------------------------------
\begin{document}
% Title page
\begin{trueplainframe}{}
\titlepage%
\end{trueplainframe}
% Introduction
\begin{frame}[t]{Introduction}{What is this?}
This file demonstrates the fau-beamer style, which is a style for the \LaTeX{} \texttt{beamer} class, which allows to create presentation slides in \LaTeX. The design is based on the FAU corporate \href{https://www.intern.fau.de/kommunikation-marketing-und-corporate-identity/corporate-identity/}{ style guide 2021}.
This code for this template was written by \href{https://timroith.github.io/}{Tim Roith}. If you have questions about the template or found a mistake you can send an email to tim\{dot\}roith\{at\}fau\{dot\}de or open a issue at the \href{https://github.com/FAU-AMMN/fau-beamer}{GitHub repository}.
\normalsize Test
\end{frame}
% Outline
\begin{frame}[t]{Outline}
\tableofcontents
\end{frame}
% input exmple sections
\input{sections/01_Intro_Landscape}
\end{document}