f4b2066c51fa04205bff90731916f64f33f2f290
[bsc-thesis1415.git] / thesis2 / thesis.tex
1 \documentclass{book}
2
3 \usepackage[british]{babel}
4
5 \usepackage{graphicx} % Images
6 \usepackage{float} % Better placement float figures
7 \usepackage{listings} % Source code formatting
8 \usepackage[dvipdfmx,hidelinks]{hyperref} % Hyperlinks
9 \usepackage{tikz} % Sequence diagrams
10 \usepackage{pgf-umlsd} %
11 \usepackage{graphviz} % For the DAG diagrams
12 \usepackage{amssymb}
13 \usepackage{marvosym}
14 \usepgflibrary{arrows} %
15
16 % Set listings settings
17 \lstset{
18 basicstyle=\scriptsize,
19 breaklines=true,
20 numbers=left,
21 numberstyle=\tiny,
22 tabsize=2
23 }
24 \lstdefinestyle{custompy}{
25 language=python,
26 keepspaces=true,
27 columns=flexible,
28 showspaces=false
29 }
30
31 \newcommand{\cvartitle}{Non IT configurable adaptive data mining solution used
32 in transforming raw data to structured data}
33 % Setup hyperlink formatting
34 \hypersetup{
35 pdftitle={\cvartitle},
36 pdfauthor={Mart Lubbers},
37 pdfsubject={Artificial Intelligence},
38 }
39
40 % Describe the frontpage
41 \author{
42 Mart Lubbers\\
43 s4109053\\
44 \strut\\
45 External supervisor: Alessandro Paula\\
46 Internal supervisor: Franc Grootjen\\
47 }
48 \title{\cvartitle}
49 \date{\today}
50
51 \begin{document}
52 \maketitle
53 \tableofcontents
54
55 % Surrogate abstract
56 \chapter*{
57 \centering
58 \begin{normalsize}
59 Abstract
60 \end{normalsize}
61 }
62 \begin{quotation}
63 \noindent
64 \input{abstract.tex}
65 \end{quotation}
66 \clearpage
67
68 \chapter{Introduction}
69 \input{1.introduction.tex}
70
71 \chapter{Requirements and design}
72 \input{2.requirementsanddesign}
73
74 \chapter{Algorithm}
75 \input{3.methods.tex}
76
77 \chapter{Conclusion}
78 \input{4.conclusion.tex}
79
80 \section{Discussion}
81 \input{5.discussion.tex}
82
83 \chapter{Appendices}
84 \input{6.appendices.tex}
85
86 \bibliographystyle{plain}
87 \bibliography{thesis}
88
89 \end{document}