b9fa5e1194092be7e5e04e3da5dd702f80a5a7e8
[bsc-thesis1415.git] / thesis2 / thesis.tex
1 %\documentclass{scrbook}
2 \documentclass{book}
3
4 %\usepackage{scrhack}
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 % Setup hyperlink formatting
32 \hypersetup{
33 pdftitle={Non IT configurable adaptive data mining solution used in transforming raw data to structured data},
34 pdfauthor={Mart Lubbers},
35 pdfsubject={Artificial Intelligence},
36 }
37
38 % Describe the frontpage
39 \author{Mart Lubbers\\s4109053}
40 \title{Non IT configurable adaptive data mining solution used in transforming raw
41 data to structured data}
42 %\subtitle{
43 % Bachelor's Thesis in Artificial Intelligence\\
44 % Radboud University Nijmegen\\
45 % \vspace{15mm}
46 % \begin{tabular}{cp{5em}c}
47 % Franc Grootjen && Alessandro Paula\\
48 % RU && Hyperleap
49 % \end{tabular}
50 % }
51 \date{\today}
52
53 \begin{document}
54 \maketitle
55 \tableofcontents
56
57 % Surrogate abstract
58 \chapter*{
59 \centering
60 \begin{normalsize}
61 Abstract
62 \end{normalsize}
63 }
64 \begin{quotation}
65 \noindent
66 \input{abstract.tex}
67 \end{quotation}
68 \clearpage
69
70 \chapter{Introduction}
71 \input{1.introduction.tex}
72
73 \chapter{Methods}
74 \input{2.methods.tex}
75
76 \chapter{Conclusion}
77 \input{3.conclusion.tex}
78
79 \section{Discussion}
80 \input{4.discussion.tex}
81
82 \chapter{Appendices}
83 \input{5.appendices.tex}
84
85 \bibliographystyle{plain}
86 \bibliography{thesis}
87
88 \end{document}