-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
70 lines (52 loc) · 1.37 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
% % % % % % % % % % % % % % % % % % % % % %
%
% Author: Benjamin van der Burgh
% Date: November 26th 2015
% Type: Master's Thesis
% Title: Entity Resolution in Unstructured Data
% License: Creative Commons Attribution-NonCommercial-ShareAlike 4.0
% International
%
% % % % % % % % % % % % % % % % % % % % % %
%%% Nag about outdated packages and incorrect syntax (must be first line!)
\RequirePackage[l2tabu, orthodox]{nag}
%%% Preamble
\documentclass[11pt,a4paper,oneside,final]{book} % Add 'draft' or 'final'
%%% Style
\usepackage{mystyle}
%%% CC BY-SA 4.0 license
\usepackage[
type={CC},
modifier={by-sa},
version={4.0},
]{doclicense}
%%% Author
\author{Benjamin van der Burgh}
\degreeyear{2015}
%%% Modular includes
%\includeonly{1_introduction}
% % % % % % % % % % % % % % % % % % % % % %
\begin{document}
%%% Final version only
\ifdraft{}{
\frontmatter
\pagestyle{empty}
\includepdfmerge{front/frontpage.pdf}
\doclicenseThis
\include{frontmatter/dedication}
\include{frontmatter/abstract}
\include{frontmatter/acknowledgements}
\tableofcontents
\pagestyle{fancy}
}
%%% Some content
\mainmatter
\include{1_introduction}
\include{2_record_linker}
\include{3_feature_extraction}
\include{4_experiments}
\include{5_conclusions}
% Bibliography
\bibliographystyle{plainnat}
\bibliography{mybib}
\end{document}