-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
161 lines (123 loc) · 3.61 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
155
156
157
158
159
160
161
%% LaTeX2e class for student theses
%% thesis.tex
%%
%% Karlsruhe Institute of Technology
%% Institute for Program Structures and Data Organization
%% Chair for Software Design and Quality (SDQ)
%%
%% Dr.-Ing. Erik Burger
%% burger@kit.edu
%%
%% Version 1.3, 2016-12-29
%% Available languages: english,ngerman
%% Available modes: draft,final (see README)
\documentclass[english,draft]{sdqthesis}
%% ---------------------------------
%% | Information about the thesis |
%% ---------------------------------
%% Name of the author
\author{Antonino Simone Di Stefano}
%% Title (and possibly subtitle) of the thesis
\title{Lexical Substitution with Word Embeddings: \\ A General Approach to
Improve Short Text Classification}
%% Type of the thesis
\thesistype{Master's Thesis}
%% Change the institute here, ``IPD'' is default
% \myinstitute{Institute for \dots}
%% You can put a logo in the ``logos'' directory and include it here
%% instead of the SDQ logo
% \grouplogo{myfile}
%% Alternatively, you can disable the group logo
% \nogrouplogo
%% The reviewers are the professors that grade your thesis
\reviewerone{Prof. Klemens Böhm}
\reviewertwo{Prof. Walter F. Tichy}
%% The advisors are PhDs or Postdocs
\advisorone{Dr. Matthias Keller}
%% The second advisor can be omitted
\advisortwo{M. Sc. Ábel Elekes}
%% Please enter the start end end time of your thesis
\editingtime{15 December 2016}{30 June 2017}
\settitle
%% --------------------------------
%% | Settings for word separation |
%% --------------------------------
%% Describe separation hints here.
%% For more details, see
%% http://en.wikibooks.org/wiki/LaTeX/Text_Formatting#Hyphenation
\hyphenation{
% me-ta-mo-del
}
%% --------------------------------
%% | Bibliography |
%% --------------------------------
%% Use biber instead of BibTeX, see README
\usepackage{nth}
\usepackage{bbold}
\usepackage{csquotes}
%\usepackage{caption}
\usepackage{hyperref}
\usepackage[citestyle=numeric,style=numeric,backend=biber]{biblatex}
\usepackage{mathtools}
\usepackage{algpseudocode}
\usepackage{algorithm}
\usepackage{nicefrac}
\usepackage{xcolor}
\addbibresource{thesis.bib}
%% Custom Commands
\input{commands.tex}
%% ====================================
%% ====================================
%% || ||
%% || Beginning of the main document ||
%% || ||
%% ====================================
%% ====================================
\begin{document}
%% Set PDF metadata
\setpdf
%% Set the title
\maketitle
%% The Preamble begins here
\frontmatter
\input{sections/declaration.tex}
\setcounter{page}{1}
\pagenumbering{roman}
%% ----------------
%% | Abstract |
%% ----------------
%% For theses written in English, an abstract both in English
%% and German is mandatory.
%%
%% For theses written in German, a German abstract is sufficient.
%%
%% The text is included from the following files:
%% - sections/abstract
\includeabstract
%% ------------------------
%% | Table of Contents |
%% ------------------------
\tableofcontents
%\listoffigures
%\listoftables
%% -----------------
%% | Main part |
%% -----------------
\mainmatter
\input{sections/introduction.tex}
\input{sections/problem-analysis.tex}
\input{sections/related-work.tex}
\input{sections/method.tex}
\input{sections/evaluation.tex}
\input{sections/conclusion.tex}
%% --------------------
%% | Bibliography |
%% --------------------
%% Add entry to the table of contents for the bibliography
\printbibliography[heading=bibintoc]
%% ----------------
%% | Appendix |
%% ----------------
%\appendix
%\input{sections/appendix.tex}
\end{document}