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