This repository has been archived by the owner on Feb 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
beamer.tex
87 lines (75 loc) · 2.17 KB
/
beamer.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
\documentclass[ngerman,aspectratio=169]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[binary-units=true]{siunitx}
\usepackage[german=quotes]{csquotes}
\usepackage[nooldvoltagedirection]{circuitikz}
\usepackage[outline]{contour}
\usepackage[shorthands=off,ngerman]{babel}
\usepackage[style=iso-numeric,minnames=1,maxnames=3,giveninits,uniquename=init]{biblatex}
\usepackage[T1]{fontenc}
\usepackage{adjustbox}
\usepackage{amsmath}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{datetime}
\usepackage{environ}
\usepackage{fontawesome5}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{pgfplots}
\usepackage{spreadtab}
\usepackage{tabularx}
\usepackage{textcomp}
\usepackage{tikz}
\usepackage{xcolor}
\usepackage{appendixnumberbeamer}
\addbibresource{references.bib}
\captionsetup{justification=centering,font=footnotesize}
\contourlength{0.7pt}
\graphicspath{{images/} {matlab/}}
\pgfplotsset{width=9cm,compat=newest}
\setlength{\bibhang}{0cm} % left-align bibliography
\sisetup{locale = DE}
\tikzset{>=Stealth}
\usetheme[progressbar=frametitle]{metropolis}
\usetikzlibrary{angles,arrows.meta,calc,math,positioning,shadows,shapes.misc,tikzmark,trees,quotes}
\tikzset{
invisible/.style={opacity=0},
visible on/.style={alt={#1{}{invisible}}},
alt/.code args={<#1>#2#3}{%
\alt<#1>{\pgfkeysalso{#2}}{\pgfkeysalso{#3}} % \pgfkeysalso doesn't change the path
},
}
\DefineBibliographyStrings{ngerman}{
andothers = {{et\,al\adddot}},
online = {Online},
}
\title{Passivradar}
\subtitle{Grundlagen der Signalverarbeitung}
\date{Jannuar 2021}
\author{Andreas Baulig}
\institute{Hochschule Esslingen}
\logo{\includegraphics[height=1cm]{hs-esslingen_logo.png}}
\newcommand{\nologo}{\setbeamertemplate{logo}{}}
\begin{document}
\frame{\titlepage}
{
\section*{Inhalt}
\nologo{}
\begin{frame}[allowframebreaks]
\frametitle{Inhalt}
\tableofcontents
\end{frame}
\include{beamer/introduction}
\include{beamer/bistatic_principle}
\include{beamer/signal_correlation}
\include{beamer/conclusion}
\begin{frame}[allowframebreaks]
\frametitle{Quellen}
\printbibliography
\end{frame}
%\appendix
%\section{BACKUP}
%\include{beamer/appendix}
}
\end{document}