-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMasterThesis.tex
executable file
·133 lines (102 loc) · 2.97 KB
/
MasterThesis.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
\documentclass[a4paper, twoside, 12pt]{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{csquotes}
\usepackage[main=english, ngerman]{babel}
\usepackage{graphicx, changepage}
\graphicspath{{pictures/}}
\usepackage{subfig}
\usepackage{color, soul}
\usepackage{hyperref}
\usepackage[]{url}
\usepackage[cache=false, outputdir=build]{minted}
%\usepackage{subfigure}
\usepackage{textcomp}
\usepackage[nohyperlinks, printonlyused, withpage]{acronym}
%\usepackage{array}
%\usepackage{microtype}
\usepackage{amsmath}
\usepackage{geometry}
% \usepackage{pgfplots}
\usepackage{pdfpages}
\usepackage{fancyhdr}
\geometry{a4paper, top=35mm, left=30mm, right=25mm, bottom=35mm, headsep=10mm, footskip=12mm}
\usepackage[backend=biber, style=numeric, citestyle=numeric]{biblatex}
% \apptocmd{\UrlBreaks}{\do\f\do\m}{}{}
\appto\UrlBreaks{\do\a\do\b\do\c\do\d\do\e\do\f\do\g\do\h\do\i\do\j\do\k\do\l\do\m\do\n\do\o\do\p\do\q\do\r\do\s\do\t\do\u\do\v\do\w\do\x\do\y\do\z}
\setcounter{biburllcpenalty}{9000}% Kleinbuchstaben
\setcounter{biburlucpenalty}{9000}% Großbuchstaben
\addbibresource{Literature.bib}
\newenvironment{code}{\captionsetup{type=listing}}{}
% \pgfplotsset{compat=1.16}
% \pagestyle{headings}
% \renewcommand{\chaptermark}[1]{\markboth{#1}{#1}}
% \renewcommand{\sectionmark}[1]{\markright{#1}{}}
%
\begin{document}
\frontmatter
%maketitel
\begin{titlepage}
\centering
\textsc{\LARGE University of Pforzheim} \par
\vspace{0.3cm}
\textsc{\LARGE School of Engineering} \par
\vspace{1.0cm}
\textsc{\Large Master Program Embedded Systems} \par
\vspace{3.0cm}
\textsc{\Large Master Thesis} \par
\vspace{1.0cm}
\huge\textbf{The Zircon Kernel \\ A Consideration of a Microkernel Approach and its Effects on Driver Development} \par
\vspace{4.3cm}
\Large
% TODO inovex, inovex supervisors
\textbf{Examiner} \hfill Prof.~Dr.-Ing. Rainer Dietz \par %Name
\textbf{Second Supervisor} \hfill Prof.~Dr.-Ing. Martin Pfeiffer \par %Name
\textbf{Author} \hfill B.Sc. Anna-Lena Marx \par
\textbf{Matriculation Number} \hfill 317593 \par
\vspace{2.0cm}
\textbf{Submission Date} \hfill 20.06.2019
\end{titlepage}
%\includepdf{pics/titelpage_bea}
\newpage
% \pagestyle{headings}
% \renewcommand{\chaptermark}[1]{\markboth{#1}{#1}}
% \renewcommand{\sectionmark}[1]{\markright{#1}{}}
%
\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{\thepage}
\fancyhead[RE,LO]{\rightmark}
\quad
\newpage
\input{Declaration}
\newpage
\quad
\newpage
\input{Abstract}
\tableofcontents
\newpage
%mainpart
\mainmatter
\input{Introduction}
\input{ModernOSConcepts}
\input{CSLinux}
\input{CSZircon}
% \input{CSEvaluation}
\input{Conclusion}
\input{Outlook}
\newpage \appendix
%\input{appendix}
% \nocite{*}
\fancyhf{}
\fancyhead[LE,RO]{\thepage}
% \addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
\addcontentsline{toc}{chapter}{Bibliography}
% \addcontentsline{toc}{chapter}{Appendix}
\input{Abbreviations}
\addcontentsline{toc}{chapter}{Appendix}
\listoflistings
\listoffigures
% \listoftables
\end{document}