288f0e5cd95a5c24be4b32069287eb65c551c2f8
[bsc-thesis1415.git] / thesis2 / thesis.tex
1 \documentclass{scrbook}
2
3 \usepackage{scrhack}
4 \usepackage{graphicx} % Images
5 \usepackage{float} % Better placement float figures
6 \usepackage{listings} % Source code formatting
7 \usepackage{hyperref} % Hyperlinks
8 \usepackage{tikz} % Sequence diagrams
9 \usepackage{pgf-umlsd} %
10 \usepgflibrary{arrows} %
11
12 % Set listings settings
13 \lstset{
14 basicstyle=\scriptsize,
15 breaklines=true,
16 numbers=left,
17 numberstyle=\tiny,
18 tabsize=2
19 }
20 \lstdefinestyle{custompy}{
21 language=python,
22 keepspaces=true,
23 columns=flexible,
24 showspaces=false
25 }
26
27 % Setup hyperlink formatting
28 \hypersetup{
29 pdftitle={Non IT configurable adaptive data mining solution used in transforming raw data to structured data},
30 pdfauthor={Mart Lubbers},
31 pdfsubject={Artificial Intelligence},
32 }
33
34 % Describe the frontpage
35 \author{Mart Lubbers\\s4109053}
36 \title{Non IT configurable adaptive data mining solution used in transforming raw
37 data to structured data}
38 \subtitle{
39 Bachelor's Thesis in Artificial Intelligence\\
40 Radboud University Nijmegen\\
41 \vspace{15mm}
42 \begin{tabular}{cp{5em}c}
43 Franc Grootjen && Alessandro Paula\\
44 RU && Hyperleap
45 \end{tabular}
46 }
47 \date{\today}
48
49 \begin{document}
50 \maketitle
51 \tableofcontents
52 \newpage
53
54 % Surrogate abstract
55 \chapter*{
56 \centering
57 \begin{normalsize}
58 Abstract
59 \end{normalsize}
60 }
61 \begin{quotation}
62 \noindent
63 \input{abstract.tex}
64 \end{quotation}
65 \clearpage
66
67 \chapter{Introduction}
68 \input{1.introduction.tex}
69
70 \chapter{Methods}
71 \input{2.methods.tex}
72
73 \chapter{Conclusion}
74 \input{3.conclusion.tex}
75
76 \section{Discussion}
77 \input{4.discussion.tex}
78
79 \chapter{Appendices}
80 \input{5.appendices.tex}
81
82 \end{document}