pseudocode is mooi
[bsc-thesis1415.git] / thesis2 / thesis.tex
1 \documentclass[twopage,a4paper,titlepage]{book}
2
3 %\usepackage[british]{babel}
4
5 \usepackage{algorithm2e}
6 \usepackage{a4wide}
7 \usepackage{courier}
8 \usepackage{graphicx}
9 \usepackage{float}
10 \usepackage{minted}
11 \usepackage{xcolor}
12 \usepackage[dvipdfmx,hidelinks]{hyperref}
13 \usepackage{graphviz}
14 \usepackage{amssymb}
15 \usepackage{amsmath}
16 \usepackage{marvosym}
17
18 % Set listings settings
19 \definecolor{mintedbackground}{rgb}{0.95,0.95,0.95}
20 \newmintedfile[xmlcode]{xml}{
21 bgcolor=mintedbackground,
22 fontfamily=tt,
23 fontsize=\scriptsize,
24 frame=leftline,
25 framerule=0.4pt,
26 framesep=2mm,
27 funcnamehighlighting=true,
28 gobble=0,
29 linenos=true,
30 mathescape=false
31 numberblanklines=true,
32 numbersep=10pt,
33 numbersep=5pt,
34 obeytabs=false,
35 showspaces=false,
36 samepage=false,
37 showtabs =false,
38 tabsize=1,
39 texcl=false,
40 }
41
42 \newcommand{\cvartitle}{Adaptable crawler specification generation system for
43 leisure activity RSS feeds}
44 % Setup hyperlink formatting
45 \hypersetup{
46 pdftitle={\cvartitle},
47 pdfauthor={Mart Lubbers},
48 pdfsubject={Artificial Intelligence},
49 }
50
51 % Describe the frontpage
52 \author{
53 Mart Lubbers\\
54 s4109053\\
55 \strut\\
56 External supervisor: Alessandro Paula\\
57 Internal supervisor: Franc Grootjen\\
58 }
59 \title{\cvartitle}
60 \date{\today}
61
62 \begin{document}
63 \maketitle
64 \tableofcontents
65
66 % Surrogate abstract
67 \chapter*{
68 \centering
69 \begin{normalsize}
70 Abstract
71 \end{normalsize}
72 }
73 \begin{quotation}
74 \noindent
75 \input{abstract.tex}
76 \end{quotation}
77 \clearpage
78
79 \chapter{Introduction}
80 \input{1.introduction.tex}
81
82 \chapter{Requirements and design}
83 \input{2.requirementsanddesign}
84
85 \chapter{Algorithm}
86 \input{3.methods.tex}
87
88 \chapter{Conclusion \& Discussion}
89 \input{4.discussion.tex}
90
91 \chapter{Appendices}
92 \input{5.appendices.tex}
93
94 \bibliographystyle{plain}
95 \bibliography{thesis}
96
97 \end{document}