forked from ctu-mrs/thesis_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
181 lines (122 loc) · 5.77 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
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
% enable this to activate the version for PRINT
% disable this to make the pdf symmetric and without white pages
% => asymmetric alternating left/right margins
% \newcommand*{\printversion}{}%
%% | ---------------- document meta information --------------- |
\newcommand{\Author}{Yauheni Zviazdou}
\newcommand{\Department}{Department of Cybernetics}
\newcommand{\Supervisor}{Ing. Jan Šedivý, CSc.}
\newcommand{\Programme}{Open Informatics}
\newcommand{\Field}{Artificial Intelligence and Computer Science}
\newcommand{\Title}{From FastText to Transformer \\[0.05em]Models, and their Application in \\[0.2em]Retrieval-Augmented Generation}
\newcommand{\Keywords}{\ac{NLP}, Word Embedding, Transformer, FastText, \ac{RAG}, \ac{QA}, \ac{STS}}
\newcommand{\KlicovaSlova}{Zpracování přirozeného jazyka, Word Embedding, Transformátor, FastText, \ac{RAG}, \ac{QA}, Sémantická Podobnost Textu}
\newcommand{\Year}{2024}
\newcommand{\Month}{May}
\newcommand{\Date}{\Month~\Year}
\newcommand{\Location}{Prague}
%% | ---------------------- configuration --------------------- |
% most of the configuration stuff happens here
\input{src/document_setup.tex}
%% | ---------------------- the contents ---------------------- |
\begin{document}
% this will prevent unwanted line overflows
% http://latexref.xyz/_005cfussy-_0026-_005csloppy.html
\sloppy
\pagenumbering{roman}
%% --------------------------------------------------------------
%% | Title page |
%% --------------------------------------------------------------
\input{src/title}
% set up the page style for the "intro" pages
\pagestyle{plain}
%% --------------------------------------------------------------
%% | Acknowledgments |
%% --------------------------------------------------------------
\conditionalClearPage
\input{src/acknowledgments.tex}
%% --------------------------------------------------------------
%% | Assignment |
%% --------------------------------------------------------------
\conditionalClearPage
\includepdf{src/assignment.pdf}
%% --------------------------------------------------------------
%% | Declaration |
%% --------------------------------------------------------------
\conditionalClearPage
\input{src/declaration.tex}
%% --------------------------------------------------------------
%% | Abstracts |
%% --------------------------------------------------------------
\conditionalClearPage
\input{src/abstract_en.tex}
\acresetall
\conditionalClearPage
\input{src/abstrakt_cz.tex}
\acresetall
%% --------------------------------------------------------------
%% | Abbreviations |
%% --------------------------------------------------------------
\conditionalClearPage
\begin{changemargin}{0.8cm}{0.8cm}
~\vfill{}
\section*{Abbreviations}
% this will print only the used abbreviations
\input{src/abbreviations.tex}
\vskip 2.5cm
\end{changemargin}
\conditionalClearPage
%% --------------------------------------------------------------
%% | Table of contents |
%% --------------------------------------------------------------
\tableofcontents
\acresetall
\conditionalClearPage
% set up the full page style with normal page numbering
\pagestyle{full}
\pagenumbering{arabic}
%% --------------------------------------------------------------
%% | Introduction |
%% --------------------------------------------------------------
\input{src/introduction.tex}
%% --------------------------------------------------------------
%% | Literature Review |
%% --------------------------------------------------------------
\input{src/literature_review.tex}
%% --------------------------------------------------------------
%% | Methodology |
%% --------------------------------------------------------------
\input{src/methodology.tex}
%% --------------------------------------------------------------
%% | Experiments and Results |
%% --------------------------------------------------------------
\input{src/experiments_and_results.tex}
%% --------------------------------------------------------------
%% | Discussion |
%% --------------------------------------------------------------
\input{src/discussion.tex}
%% --------------------------------------------------------------
%% | Conclusion |
%% --------------------------------------------------------------
\input{src/conclusion.tex}
%% --------------------------------------------------------------
%% | References |
%% --------------------------------------------------------------
\chapter{References}
\printbibliography[heading=none,title={}]
%% --------------------------------------------------------------
%% | Appendices |
%% --------------------------------------------------------------
\appendix
\renewcommand\chaptername{Appendix}
\renewcommand{\thechapter}{A}
\renewcommand\chaptername{Appendix A}
\input{src/appendix_A.tex}
%% --------------------------------------------------------------
%% | Empty page for print version |
%% --------------------------------------------------------------
\ifdefined\printversion
\afterpage{\null \thispagestyle{empty} \addtocounter{page}{-1} \newpage}
\afterpage{\null \thispagestyle{empty} \addtocounter{page}{-1} \newpage}
\fi
\end{document}