elteikthesis/thesis_en.tex
2022-03-15 14:16:15 +01:00

108 lines
2.6 KiB
TeX

\documentclass[
%parspace, % Add vertical space between paragraphs
%noindent, % No indentation of first lines in each paragraph
%nohyp, % No hyphenation of words
%twoside, % Double sided format
%draft, % Quicker draft compilation without rendering images
%final, % Set final to hide todos
]{elteikthesis}[2021/09/20]
% The minted package is also supported for source highlighting
% See minted-intregration.tex for example
%\usepackage[newfloat]{minted}
% Document's metadata
\title{Title of the thesis} % title
\date{2022} % year of defense
% Author's metadata
\author{John Smith}
\degree{Computer Science BSc}
% Superivsor(s)' metadata
\supervisor{John Doe} % internal supervisor's name
\affiliation{Assistant Lecturer} % internal supervisor's affiliation
%\extsupervisor{Jane Doe} % external supervisor's name
%\extaffiliation{Senior Developer} % external supervisor's affiliation
% University's metadata
\university{Eötvös Loránd University} % university's name
\faculty{Faculty of Informatics} % faculty's name
\department{Dept. of Software Technology and Methodology} % department's name
\city{Budapest} % city
\logo{elte_cimer_szines} % logo
% Add bibliography file
\addbibresource{thesis.bib}
% The document
\begin{document}
% Set document language
%\documentlang{hungarian}
\documentlang{english}
% List of todos (not in the final document)
%\listoftodos[\todolabel]
% Title page (mandatory)
\maketitle
\topicdeclaration
% Table of contents (mandatory)
\tableofcontents
\cleardoublepage
% Main content
\input{samples_en/intro.tex}
\cleardoublepage
\input{samples_en/user.tex}
\cleardoublepage
\input{samples_en/impl.tex}
\cleardoublepage
\input{samples_en/sum.tex}
\cleardoublepage
% Appendices (optional) - useful for detailed information in long tables, many and/or large figures, etc.
\appendix
\input{samples_en/sim.tex}
\cleardoublepage
% Bibliography (mandatory)
\phantomsection
\addcontentsline{toc}{chapter}{\biblabel}
\printbibliography[title=\biblabel]
\cleardoublepage
% List of figures (optional) - useful over 3-5 figures
\phantomsection
\addcontentsline{toc}{chapter}{\lstfigurelabel}
\listoffigures
\cleardoublepage
% List of tables (optional) - useful over 3-5 tables
\phantomsection
\addcontentsline{toc}{chapter}{\lsttablelabel}
\listoftables
\cleardoublepage
% List of algorithms (optional) - useful over 3-5 algorithms
\phantomsection
\addcontentsline{toc}{chapter}{\lstalgorithmlabel}
\listofalgorithms
\cleardoublepage
% List of codes (optional) - useful over 3-5 code samples
\phantomsection
\addcontentsline{toc}{chapter}{\lstcodelabel}
\lstlistoflistings
\cleardoublepage
% List of symbols (optional)
%\printnomenclature
\end{document}