-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
190 lines (157 loc) · 4.3 KB
/
main.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
% v1.7 - 2014-11-18
% - bib fixes: now using biber instead of bibtex (thanks felix)
% - compile now with pdflatex -> biber -> pdflatex
% v1.6 - 2013-05-13
% - bibliography headers fixed - thanx lorenz lehmann
% - high quality titlepage - thanx thomas graf
% - removed separation of online and offline references -> style 1.4a
% v1.5 - 2013-01-16
\documentclass[twoside,11pt,titlepage,a4paper,english,bibliography=totocnumbered,listof=numbered]{scrbook}
% Template Style
\include{style}
%\bibliography{main}
\addbibresource{main.bib}
% custom hyphenation % add words to this list to prevent hyphenation
\hyphenation{
IoT
ASCII
TCP
device
devices
Operator
Vendor
Consumer
Aggregator
Operators
Vendors
Consumers
Aggregators
principal
principals
PrincipalIdentifier
}
%make readable references
\usepackage[pdftex,pdfpagelabels=true]{hyperref}
\usepackage{color, colortbl}
\usepackage{pbox}
\definecolor{Gray}{gray}{0.4}
\usepackage{longtable}
\usepackage{scrextend}
%\usepackage{subfigure}
\usepackage{caption}
\hypersetup{%
pdftitle={Thesis Title},
pdfauthor={Thesis Author},
pdfkeywords={key1, key2, key3},
pdfsubject={Thesis Subject}
}
\let\URL\url
\makeatletter
\def\url#1{\@URL#1;;\@nil}
\def\@URL#1;#2;#3\@nil{%
\URL{#1}\ifx\relax#2\relax\else - \URL{#2}\fi}
\makeatother
\newcommand{\tabitem}{~~\llap{\textbullet}~~}
\newenvironment{nstabbing}
{\setlength{\topsep}{-\parskip}%
\setlength{\partopsep}{0pt}%
\tabbing}
{\endtabbing}
\begin{document}
%--------------------------------------------------------------
\frontmatter
%\begin{titlepage}
%\AddToShipoutPicture*{
%\put(0,0){
%\includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio=false]{images/titlepage.pdf}}}
%\strut
%\end{titlepage}
%\thispagestyle{empty}
%titlepage
\begin{titlepage}
\AddToShipoutPicture*{
\put(0,0){
\includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio=false]{images/titlepage_2.pdf}
}
}
\strut
\hfill
\begin{center}
\vspace{1cm}
\Huge
\begin{spacing}{.9}
\textcolor{DarkRed}{\textbf{Design of an Authentication and Authorization Framework for Pools of Dynamically Provisioned Devices}}\\
\end{spacing}
\vspace{0.8cm}
\large
by\\
\vspace{0.8cm}
\textbf{Guillaume Pansier}\\
\vspace{0.8cm}
\textbf{Matriculation Number 356959}\\
\vspace{1.8cm}
A thesis submitted to\\
\vspace{0.5cm}
Technische Universität Berlin\\
School IV - Electrical Engineering and Computer Science\\
Department of Telecommunication Systems\\
Complex and Distributed IT Systems\\
\vspace{0.5cm}
Master Thesis\\
\vspace{2.0cm}
\today\\
\vspace{1.8cm}
\large
Supervised by:\\
Prof. Dr. Odej Kao\\
\vspace{0.8cm}
Assistant supervisor:\\
Dr. Andreas Kliem
\end{center}
%\includegraphics[scale=1.0]{images/watermark.png}
\end{titlepage}
\thispagestyle{empty}
\cleardoublepage
\newpage
\section*{\thispagestyle{empty}Eidestattliche Erklärung / Statutory Declaration}
Hiermit versichere ich, dass ich diese Arbeit selbst\-ständig verfasst und keine anderen als die angegebenen Quellen und Hilfsmittel benutzt habe. \\
\noindent I hereby declare that I have created this work completely on my own and used no other sources or tools than the ones listed.
\vspace{30 mm}
\begin{flushright}
\rule{90mm}{1pt}
Berlin, \today \hspace{15 mm} Chuck Norris' son
\end{flushright}
\clearpage
\cleardoublepage{}
\newpage
%\input{acknowledgments} % "I would like to thank my teddybear..." and such stuff...
%\input{00_abstract}
%\thispagestyle{empty}
\tableofcontents{\thispagestyle{empty}}
%--------------------------------------------------------------
\mainmatter
%\part{} % optional: use parts to structure your thesis
\input{01_introduction}
\input{02_related_work}
\input{03_concept_and_design}
\input{05_evaluation}
\input{04_implementation}
\input{06_conclusion}
%--------------------------------------------------------------
\backmatter
\listoftables
\listoffigures
\setwidesite{} % Set page to be wider for bibliography
\label{cha:bibliography}
\markboth{Bibliography}{Bibliography}
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
%\printbibliography[heading=offline,filter=offline]
%\printbibliography[heading=online,filter=online]
\begin{appendices}
\input{a01_listings}
\input{a1_Kerberos}
\input{a2_HLPSL}
\input{a3_AVISPA}
\end{appendices}
\end{document}