-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain_landscape.tex
108 lines (108 loc) · 4.12 KB
/
main_landscape.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
% ----------------------------------------------------------------------------------------
% The preamble
\documentclass[final, 12pt]{beamer}
% ========================================================================================
% Theme: inner, outer, font and colors
% ----------------------------------------------------------------------------------------
\usepackage[institute=nat, logo=art/FAU-DMM-Logo-rgb-10cm]{styles/beamerthemefau-4-3}
% ----------------------------------------------------------------------------------------
% 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=faunat}
% ----------------------------------------------------------------------------------------
% custom commands for symbols
\usepackage{styles/symbols}
% ========================================================================================
% Setup for Titlepage
% ----------------------------------------------------------------------------------------
\title[Short title]{Full title for display}
\author[Author in foot]{Author A, Author B}
\institute[Short institute name]{Institute name}
\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=faunat,
citecolor=faublue,
linkcolor=faunat
}
% ========================================================================================
% 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}}}}
% ----------------------------------------------------------------------------------------
\begin{document}
% ----------------------------------------------------------------------------------------
% Titlepage
% - lplain erweiter die normale plain Umgebung sodass die linke sidebar tatsaechlich
% entfernt wird
\begin{lplainframe}
\titlepage
\end{lplainframe}
% ----------------------------------------------------------------------------------------
% Outline
\begin{frame}{Outline}
\tableofcontents
\end{frame}
% ----------------------------------------------------------------------------------------
\input{sections/01_Intro_Landscape}
\end{document}