-
Notifications
You must be signed in to change notification settings - Fork 20
/
thesis.tex
120 lines (97 loc) · 3.94 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
\documentclass[twoside,a4paper,11pt]{memoir}
\usepackage{a4}
\usepackage{times}
\usepackage{pslatex}
\usepackage{url}
\usepackage{mscthesis}
\usepackage{lipsum} % standard filler text, only needed for demo
% %% The package 'algorithm' is useful, but incompatible with memoir.
% %% Cor-Paul Bezemer / http://homes.esat.kuleuven.be/~dvherten/esatthesis.html
% %% suggest the following fix:
\let\newfloat\undefined \usepackage{algorithmic}
\usepackage{algorithm}
% Include right (LaTeX/PDFLaTeX) graphics package
% (doesn't work under cygwin apperently)
%\ifx\pdftexversion\undefined
\usepackage[dvips]{graphicx}
\usepackage[dvips]{color}
%\else
%\usepackage[pdftex]{graphicx}
%\usepackage[pdftex]{color}
%\fi
\usepackage{hyperref}
% Used in the bibliography to enable \citeauthor{citation}
\usepackage[numbers]{natbib}
% Ensure that urls longer than the page width are broken up
% Based on the answer of StackOverflow user "xamde":
% https://tex.stackexchange.com/a/10401/155506
\expandafter\def\expandafter\UrlBreaks\expandafter{\UrlBreaks% save the current one
\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\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}
%---------------------------------------------------------------------%
% Options %
%---------------------------------------------------------------------%
\title{Software Engineering Research Group \\MSc Thesis Style}
\subtitle{Version of \today}
% The final version of your thesis should typically use a different
% subtitle without the current date, for example
%\subtitle{Master's Thesis}
% or remove the subtitle by uncommenting the following line:
%\subtitle{}
\author{Leon Moonen} % CHANGE TO YOUR NAME
\authoremail{\url{[email protected]}} % CHANGE TO YOUR EMAIL ADDRESS
\birthplace{Weert, the Netherlands} % CHANGE TO YOUR BIRTH PLACE
\studentid{123456789} % CHANGE TO YOUR STUDENT ID
% Optional for work done at a company, put this in comments if you did
% not do your thesis work at a company
\company{
\includegraphics[height=2cm]{img/hilbert.ps}\\
Some Company\\
With it's address\\
ThePlace, the Netherlands\\
\url{www.url.nl}
}
% Optional (postscript) cover picture. Put this in comments when not needed.
\coverpicture{\includegraphics[width=13cm]{img/maze.ps}}
% A copyright notice and maybe something about the cover picture
% Put in comments to get the default copyright notice
\colophon{\noindent
\copyright{} \the\year \: \theauthor. \emph{Note that this notice is for demonstration
purposes and that the \LaTeX{} style and document source are free to
use as basis for your MSc thesis.} \\[1em]
Cover picture: A ``random'' maze generated in postscript.
}
% thesis committee:
\chair{Prof. Dr. A. van Deursen, Faculty EEMCS, TU Delft}
\supervisor{Dr. E. Visser, Faculty EEMCS, TU Delft}
% The following two are optional for LaTeX (current university
% regulations state that at least one of them should be assigned)
\externalsupervisor{Drs. E.X. Ternal, Some Company}
\committeemember{Dr. S.T.A.F.F. Member, Faculty EEMCS, TU Delft}
\setcounter{tocdepth}{1}
\setsecnumdepth{subsection}
\maxsecnumdepth{subsection}
\begin{document}
\frontmatter
\thispagestyle{empty}
\maketitle % for the cover page
\makeformaltitlepages{\input{abstract}} % for formal title pages with all info
\include{preface}
\cleardoublepage\tableofcontents
\cleardoublepage\listoffigures
\cleardoublepage\mainmatter
\include{introduction}
\include{chapter}
\include{related_work}
\include{conclusions_and_future_work}
\bibliographystyle{plainnat}
\bibliography{thesis}
\appendix
\def\chaptername{Appendix}
\include{appendix}
\include{requirements}
\end{document}