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