2017-08-31 22:31:01 +02:00
\documentclass [12pt,a4paper] { report}
2017-07-13 21:03:02 +02:00
\overfullrule =5mm
2017-04-05 15:32:36 +02:00
\usepackage [utf8] { inputenc}
\usepackage { titlesec} % titleformat
\usepackage { blindtext,color,fancyhdr}
\usepackage { geometry}
\geometry { a4paper, top=25mm, left=30mm, right=35mm, bottom=35mm, headsep=10mm, footskip=12mm}
2017-08-31 22:31:56 +02:00
\usepackage { multirow,tabularx,tabu}
\usepackage { ctable,multirow,spreadtab}
2017-04-05 15:32:36 +02:00
2017-09-11 22:54:22 +02:00
\usepackage [backend=biber,style=numeric,citestyle=numeric,url=true] { biblatex}
2017-08-31 22:30:17 +02:00
\addbibresource { thesis.bib}
2017-04-05 15:32:36 +02:00
2017-08-31 22:30:17 +02:00
%\usepackage[hyphens]{url}
2017-04-05 15:32:36 +02:00
\Urlmuskip = 0mu plus 1mu
2017-08-31 22:31:35 +02:00
\hyphenpenalty =500
\tolerance =10000
2017-04-05 15:32:36 +02:00
\usepackage [numberedsection,toc,numberline,nopostdot] { glossaries}
\makenoidxglossaries
2017-06-29 14:31:59 +02:00
\usepackage { listings}
2017-08-31 22:31:56 +02:00
\usepackage { graphicx}
\usepackage { color}
2017-06-29 14:31:59 +02:00
2017-09-11 22:54:22 +02:00
\usepackage [parfill] { parskip}
\usepackage { amsmath}
\newcommand { \iitemA } { \setlength \itemindent { 0pt} \item }
\newcommand { \iitemB } { \setlength \itemindent { 25pt} \item }
\newcommand { \iitemC } { \setlength \itemindent { 50pt} \item }
2017-08-22 10:41:12 +02:00
\newcommand { \topic } { Guarantees On In-Kernel Memory-Safety Using Rust's Static Code Analysis}
2017-04-05 15:32:36 +02:00
\newcommand { \authorOne } { Stefan Junker}
\newcommand { \authorOneInit } { SJ}
\newcommand { \authorOnestreet } { Alemannenstr. 7}
\newcommand { \authorOnezip } { 78467}
\newcommand { \authorOnecity } { Konstanz}
\newcommand { \authorOneCountry } { Germany}
\newcommand { \authorOneId } { 283751}
\newcommand { \supervisorOne } { Prof. Dr. Michael Mächtel}
2017-06-29 14:31:59 +02:00
\newcommand { \supervisorTwo } { Felix Schuckert}
2017-08-31 22:29:22 +02:00
\newcommand { \studies } { Information Technology - Embedded And Mobile Systems}
2017-06-29 14:31:59 +02:00
\newcommand { \startdate } { 2017/4/1}
2017-08-22 17:40:13 +02:00
\newcommand { \submitdate } { 2017/9/29}
2017-08-22 10:41:12 +02:00
\newcommand { \buzzwords } { memory-safety, operating system, rust}
2017-04-05 15:32:36 +02:00
% Numbered Subsubsections
\setcounter { secnumdepth} { 3}
\date { Summersemester 2017}
\title { \topic }
\author { authorOne}
\usepackage { etoolbox}
\patchcmd { \part } { \thispagestyle { plain} } { \thispagestyle { empty} }
{ } { \errmessage { Cannot patch \string \part } }
\fancypagestyle { empty} { %
\renewcommand { \headrulewidth } { 0pt}
\renewcommand { \footrulewidth } { 0pt}
\fancyhf { }
}
\fancypagestyle { front} { %
\pagenumbering { roman}
\renewcommand { \headrulewidth } { 0pt}
\renewcommand { \footrulewidth } { 0pt}
\fancyhf { }
}
\fancypagestyle { preamble} { %
\pagenumbering { roman}
\renewcommand { \headrulewidth } { 0pt}
\renewcommand { \footrulewidth } { 0pt}
\fancyhf { }
\fancyfoot [R] { \thepage { } }
}
\fancypagestyle { main} { %
\pagenumbering { arabic}
\renewcommand { \headrulewidth } { 0.25pt}
\renewcommand { \footrulewidth } { 0.25pt}
\fancyhf { }
\addtolength { \headwidth } { \marginparsep }
\headheight =15pt
\fancyhead [L] { \footnotesize \nouppercase { \leftmark } }
\fancyhead [C] { }
\fancyhead [R] { }
\fancyfoot [R] { \thepage { } }
}
\titlespacing * { \chapter } { 0cm} { -1cm} { 0.75cm}
\titleformat { \chapter } [hang]{ \normalfont \Large \bfseries } { \thechapter } { 0.5cm} { }
2017-06-29 19:03:01 +02:00
\usepackage { hyperref}
2017-04-05 15:32:36 +02:00
\makeatletter
%\renewcommand\paragraph{\startsection{paragraph}{4}{\z}%
% {-3.25ex\plus -1ex \minus -.2ex}%
% {0.0001pt \plus 0.2ex}%
% {\normalfont\normalsize\bfseries}}
\renewcommand \subparagraph { \startsection { subparagraph} { 5} { \z } %
{ -3.25ex\plus -1ex \minus -.2ex} %
{ 0.0001pt \plus 0.2ex} %
{ \normalfont \normalsize \bfseries } }
\makeatother
\include { glossary}
\overfullrule =1cm
\begin { document}
%TODO: \include{cover}
\pagestyle { front}
\include { title}
\pagestyle { preamble}
\include { abstract}
%TODO: \include{affidavit}
\cleardoublepage
\newcounter { roman_ pagenumbers} % save page number
\setcounter { roman_ pagenumbers} { \value { page} }
\pagestyle { main}
%TODO \include{acknowledgments}
2017-08-22 17:40:13 +02:00
%TODO abstract
2017-04-05 15:32:36 +02:00
\chapter * { Preface}
2017-08-31 22:29:22 +02:00
This thesis is original, unpublished, independent work by me, \authorOne .
2017-04-05 15:32:36 +02:00
I strongly believe in openness and collaboration in the development of new technology, therefore the development will be based solely on Open-Source software.
2017-08-22 10:41:12 +02:00
The source of this document and the code I have worked on will be freely available on my personal Gitlab site\footnote { https://gitlab.com/steveeJ/msc-thesis} once the academic process of this project is complete.
2017-04-05 15:32:36 +02:00
\tableofcontents
\part { Context}
2017-09-11 22:54:22 +02:00
\label { context}
2017-04-05 15:32:36 +02:00
\printnoidxglossary
\include { parts/context/context}
2017-08-10 19:09:58 +02:00
\part { Research And Development}
2017-09-11 22:54:22 +02:00
\label { rnd}
2017-08-10 19:09:58 +02:00
\include { parts/research_ and_ development/research_ and_ development}
2017-04-05 15:32:36 +02:00
2017-08-10 19:18:35 +02:00
\part { Evaluation And Conclusion}
2017-09-11 22:54:22 +02:00
\label { eval_ and_ conclusion}
2017-08-10 19:18:35 +02:00
\include { parts/eval_ and_ conclusion/eval_ and_ conclusion}
2017-04-05 15:32:36 +02:00
\newpage
%TODO \listofmyequations
\listoftables
%TODO \lstlistoflistings
2017-07-13 21:03:02 +02:00
\listoffigures
2017-08-31 22:30:17 +02:00
\printbibliography
2017-04-05 15:32:36 +02:00
\end { document}