-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
139 lines (105 loc) · 3.07 KB
/
thesis.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
%\documentclass{article}
\documentclass[12pt, a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage{import}
\usepackage{hyperref} % - Package for including hyperlinks in the document.
\usepackage{microtype}
\usepackage[section]{placeins}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage[
backend=biber,
style=alphabetic,
sorting=ynt
]{biblatex}
\addbibresource{bibliography.bib}
\usepackage[acronym, toc]{glossaries}
\makeglossaries
\input{bibliocosas/glossary.tex}
% Adds subsubsubsection command
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
% Table settings
\setlength{\arrayrulewidth}{0.5mm}
\setlength{\tabcolsep}{25pt}
\renewcommand{\arraystretch}{1.5}
% For making it a5
%\documentclass[10pt, a5paper]{article}
%\usepackage{geometry}
%\geometry{a5paper}
\makeatletter
\newcommand\subsubsubsection{\@startsection{paragraph}{4}{\z@}{-2.5ex\@plus -1ex \@minus -.25ex}{1.25ex \@plus .25ex}{\normalfont\normalsize\bfseries}}
%\newcommand\subsubsubsubsection{\@startsection{subparagraph}{5}{\z@}{-2.5ex\@plus -1ex \@minus -.25ex}{1.25ex \@plus .25ex}{\normalfont\normalsize\bfseries}}
\makeatother
%% Patch for blank pages between chapters
%% which disables the current page style
\makeatletter
\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else
\hbox{}\thispagestyle{empty}\newpage\if@twocolumn\hbox{}\newpage\fi\fi\fi}
\makeatother
%\title{Improving Debugging For Optimized Rust Code}
%\date{\today}
%\author{Niklas Lundberg, [email protected]}
\begin{document}
%\begin{figure}[b]
% \centering
% \includegraphics[width=0.2\textwidth]{ltulogo.png}
% \label{fig:LTULogga}
%\end{figure}
%
%\maketitle
%\thispagestyle{empty}
\begin{titlepage}
\centering
\includegraphics[width=0.15\textwidth]{ltulogo.png}\par\vspace{1cm}
{\scshape\LARGE Luleå University of Technology\par}
\vspace{1cm}
{\scshape\Large Master Thesis\par}
\vspace{1.5cm}
{\huge\bfseries Improving Debugging For Optimized Rust Code On Embedded Systems\par}
\vspace{2cm}
{\Large\textit{Niklas Lundberg}\par}
{\Large\textit{[email protected]}\par}
\vfill
supervised by\par
Prof.~Per \textsc{Lindgren}
\vfill
% Bottom of the page
{\large \today\par}
\end{titlepage}
\chapter*{Abstract}
\label{sec:abstract}
\import{sections/}{abstract.tex}
\tableofcontents
\clearpage
\listoffigures
\clearpage
%\listoftables
%\clearpage
\chapter{Introduction}
\label{sec:introfuction}
\import{sections/}{introduction.tex}
\chapter{Related work}
\label{sec:relatedwork}
\import{sections/}{related-work.tex}
\chapter{Theory}
\label{sec:theory}
\import{sections/}{theory.tex}
\chapter{Implementation}
\label{sec:implementation}
\import{sections/}{implementation.tex}
\chapter{Evaluation}
\label{sec:evaluation}
\import{sections/}{evaluation.tex}
\chapter{Discussion}
\label{sec:discussion}
\import{sections/}{discussion.tex}
\chapter{Conclusions and future work}
\label{sec:conclusions}
\import{sections/}{conclusions-and-future-work.tex}
\clearpage
\printglossary[type=\acronymtype]
\label{sec:acronym}
\clearpage
\printbibliography
\end{document}