-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
154 lines (122 loc) · 3.9 KB
/
thesis.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
% Enable warnings about problematic code
\RequirePackage[l2tabu, orthodox]{nag}
\PassOptionsToPackage{utf8}{inputenc}
\PassOptionsToPackage{T1}{fontenc}
\PassOptionsToPackage{ngerman, american}{babel}
\title{Fast and Non-Approximative \mbox{Language Model Prefixqueries} for Word Prediction using Top-k Joining Techniques}
\author{Lukas Schmelzeisen}
\date{\today}
\documentclass[m,bachelor,classicthesis,classicthesistitle]{thesis}
\authormail{lukas@uni-koblenz.de}
\degreecourse{Informatik}
\firstreviewer{Prof.~Dr.~Steffen Staab}
\firstreviewerinfo{Institute for Web Science and Technologies}
\secondreviewer{Ren{\'e} Pickhardt}
\secondreviewerinfo{Institute for Web Science and Technologies}
\usepackage{standalone}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usepackage{pgfplots}
\pgfplotsset{compat = 1.12}
\usetikzlibrary{pgfplots.statistics}
\usepackage[
group-separator={,},
exponent-product=\cdot,
binary-units = true,
]{siunitx}
\addbibresource{bibliography.bib}
% Editorial Commands ===========================================================
% TODO: remove before relase
\usepackage[
linecolor = Maroon,
bordercolor = Maroon,
backgroundcolor = White,
disable,
]{todonotes}
% \definecolor{draft}{rgb}{0.5, 0.5, 0.5}
% \newenvironment*{draft}{%
% \color{draft}%
% }{%
% }
%
% \newcommand*\Lukas[2][]{
% \todo[linecolor = Cyan, bordercolor = Cyan, #1]{\textcolor{Cyan}{Lukas}: #2}
% }
% \newcommand*\Rene[2][]{
% \todo[linecolor = Blue, bordercolor = Blue, #1]{\textcolor{Blue}{Rene}: #2}
% }
%
% \newcommand{\noref}{\textcolor{RoyalBlue}{\footnotesize[Citation needed]}}
% \newcommand{\mbref}[1]{\textcolor{RoyalBlue}{\footnotesize[Citation: #1?]}}
% \newcommand*\Lukas[2][]{%
% }
% \newcommand*\Rene[2][]{%
% }
\newcommand{\noref}{}
% \newcommand{\mbref}[1]{}
\usepackage{verbatim} % for comment environment
\newenvironment{draft}{%
\expandafter\comment%
}{%
\expandafter\endcomment%
}
% ==============================================================================
\begin{document}
\frenchspacing
\raggedbottom
% Frontmatter ==================================================================
\pagestyle{scrplain}
\pagenumbering{roman}
\selectlanguage{ngerman}
\maketitle
\makestatement
\selectlanguage{american}
\cleardoublepage
\include{frontbackmatter/abstract}
\clearpage
\newgeometry{left = 2.5cm, right = 2.5cm}
\begin{center}
\includegraphics{figures/cc-by-sa}
\end{center}
\vspace{0.25cm}
\noindent
This work is licensed under the \emph{Creative Commons Attribution-ShareAlike
4.0 International License}.
To view a copy of this license, visit
\mbox{\url{http://creativecommons.org/licenses/by-sa/4.0/}} or send a letter to
Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
\restoregeometry
\cleardoublepage
\pdfbookmark[1]{\contentsname}{toc}
\tableofcontents
% Mainmatter ===================================================================
\cleardoublepage
\pagenumbering{arabic}
\pagestyle{scrheadings}
\include{chapters/introduction}
\include{chapters/review}
\include{chapters/weightedsum}
\include{chapters/topkjoin}
\include{chapters/evaluation}
\include{chapters/conclusion}
% Backmatter ===================================================================
\cleardoublepage
\include{frontbackmatter/acknowledgments}
\sloppy % do not have overlong lines
\printbibliography
\todo[inline]{Dedication}
\todo[inline]{Use etoolbox for ifthenelse in class.}
\todo[inline]{Kill warnings.}
\todo[inline]{Rewrite math package. Use left/right braces for set.}
\todo[inline]{Use subequations more often?}
\todo[inline, caption={Check for typographicals errors before submission.}]{%
Check for typographical errors before submission.%
\begin{itemize}%
\item Check if all ellipsis "\ldots" are done using
\texttt{\textbackslash{}ldots}.%
\item Check if words ending in "s" require possessive apostrophe.%
\end{itemize}%
}
\todo[inline]{Keywords?}
\listoftodos
\end{document}