-
Notifications
You must be signed in to change notification settings - Fork 0
/
Presentation.tex
59 lines (49 loc) · 1.79 KB
/
Presentation.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% I, the copyright holder of this work, release this work into the
%% public domain. This applies worldwide. In some countries this may
%% not be legally possible; if so: I grant anyone the right to use
%% this work for any purpose, without any conditions, unless such
%% conditions are required by law.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Orginal Author of this template: https://github.com/saitho/hda-fbi-beamer-template
% Current Maintainer: https://github.com/paranoyed
% New features:
% - 16:10
% - Biblatex
% - Subtitle
% - Author in the frame Footer
% Change to 169 if a 16:9 is needed. 4:3 is no longer possible.
\documentclass[aspectratio=1610, compress]{beamer}
\usetheme[university=hda, faculty=fbi]{fibeamer}
\useoutertheme[subsection=false]{miniframes}
\setbeamertemplate{navigation symbols}{}
\usepackage[utf8]{inputenc}
\usepackage[
main=ngerman
%% instead of `english`, you can typeset the presentation to german by seting `ngerman`
]{babel}
\include{config}
%% These additional packages are used within the document:
\usepackage{ragged2e} % `\justifying` text
\usepackage{booktabs} % Tables
\usepackage{tabularx}
\usepackage{tikz} % Diagrams
\usetikzlibrary{calc, shapes, backgrounds}
\usepackage{amsmath, amssymb}
\usepackage{url} % `\url`s
\usepackage{listings} % Code listings
\usepackage{animate} % for animated GIFs
\frenchspacing
\usepackage{biblatex}
\usepackage{hyperref}
\hypersetup{citecolor={red},urlcolor={red}}
\addbibresource{References.bib}
\begin{document}
\frame[plain]{\maketitle}
\addtobeamertemplate{frametitle}{\vskip-1.7ex}{}
%% Gliederung
\begin{frame}[plain]{Gliederung}
\tableofcontents[subsectionstyle=hide]
\end{frame}
\include{slides}
\end{document}