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