thesis update
[bsc-thesis1415.git] / thesis2 / thesis.tex
1 \documentclass{scrbook}
2
3 %\usepackage{bibtex}
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 \usepgflibrary{arrows} %
14
15 % Set listings settings
16 \lstset{
17 basicstyle=\scriptsize,
18 breaklines=true,
19 numbers=left,
20 numberstyle=\tiny,
21 tabsize=2
22 }
23 \lstdefinestyle{custompy}{
24 language=python,
25 keepspaces=true,
26 columns=flexible,
27 showspaces=false
28 }
29
30 % Setup hyperlink formatting
31 \hypersetup{
32 pdftitle={Non IT configurable adaptive data mining solution used in transforming raw data to structured data},
33 pdfauthor={Mart Lubbers},
34 pdfsubject={Artificial Intelligence},
35 }
36
37 % Describe the frontpage
38 \author{Mart Lubbers\\s4109053}
39 \title{Non IT configurable adaptive data mining solution used in transforming raw
40 data to structured data}
41 \subtitle{
42 Bachelor's Thesis in Artificial Intelligence\\
43 Radboud University Nijmegen\\
44 \vspace{15mm}
45 \begin{tabular}{cp{5em}c}
46 Franc Grootjen && Alessandro Paula\\
47 RU && Hyperleap
48 \end{tabular}
49 }
50 \date{\today}
51
52 \begin{document}
53 \maketitle
54 \tableofcontents
55 \newpage
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}