elteikthesis/elteikthesis_en.tex

135 lines
4.0 KiB
TeX
Raw Normal View History

2018-06-06 17:50:27 +02:00
\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}[2023/04/10]
2018-06-06 17:50:27 +02:00
2021-09-20 15:01:13 +02:00
% The minted package is also supported for source highlighting
2023-04-11 14:01:45 +02:00
% See elteikthesis_minted.tex for example
%\usepackage[newfloat]{minted}
% Document's metadata
\title{Title of the thesis} % title
\date{2023} % 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
2018-06-06 17:50:27 +02:00
% The document
2018-06-06 17:50:27 +02:00
\begin{document}
% Set document language
%\documentlang{hungarian}
\documentlang{english}
2018-06-06 17:50:27 +02:00
% List of todos (not in the final document)
%\listoftodos[\todolabel]
2019-06-09 20:33:16 +02:00
% Title page (mandatory)
2018-06-06 17:50:27 +02:00
\maketitle
2023-12-03 17:01:17 +01:00
% Topic declaration page (mandatory) - can also be attached instead
%\includepdf{topicdeclaration.pdf}
2018-06-06 17:50:27 +02:00
% Table of contents (mandatory)
2018-06-06 17:50:27 +02:00
\tableofcontents
\cleardoublepage
% Main content
\input{samples_en/intro.tex}
2018-06-06 17:50:27 +02:00
\cleardoublepage
\input{samples_en/user.tex}
2018-06-06 17:50:27 +02:00
\cleardoublepage
\input{samples_en/impl.tex}
2018-06-06 17:50:27 +02:00
\cleardoublepage
\input{samples_en/sum.tex}
2018-06-06 17:50:27 +02:00
\cleardoublepage
% Acknowledgements (optional) - in case your thesis received funding or would like to express special thanks to someone
\chapter*{\acklabel}
\addcontentsline{toc}{chapter}{\acklabel}
In case your thesis received financial support from a project or the university, it is usually required to indicate the proper attribution in the thesis itself. Special thanks can also be expressed towards teachers, fellow students and colleagues who helped you in the process of creating your thesis.
% Appendices (optional) - useful for detailed information in long tables, many and/or large figures, etc.
%\appendix
%\input{samples_en/sim.tex}
2023-12-03 18:07:28 +01:00
\cleardoublepage
% Bibliography (mandatory)
\phantomsection
\addcontentsline{toc}{chapter}{\biblabel}
2023-12-03 17:01:17 +01:00
\begin{thebibliography}{0}
2023-12-03 18:07:28 +01:00
2023-12-03 17:01:17 +01:00
\bibitem{dahl1972structured}
\textbf{Dahl, O. J. and Dijkstra, E. W. and Hoare, C. A. R.h}:\\
Structured Programming\\
\textbf{Academic Press Ltd.}, (1972), ISBN: 0-12-200550-3
\bibitem{cormen2009algorithms}
\textbf{Cormen, Thomas H. and Leiserson, Charles E. and Rivest, Ronald L. and Stein, Clifford}:\\
Introduction to Algorithms, Third Edition\\
\textbf{The MIT Press}, (2009), ISBN: 0262033844, 9780262033848
\bibitem{dijkstra1979goto}
\textbf{Dijkstra, E.}:\\
Classics in Software Engineering\\
\textbf{Yourdon Press}, (1979), ISBN: 0-917072-14-6
\bibitem{krasner1988mvc}
\textbf{Krasner, Glenn E. and Pope, Stephen T.}:\\
A Cookbook for Using the Model-View-Controller User Interface Paradigm in Smalltalk-80\\
\textbf{J. Object Oriented Program.}, (1972), ISBN: 0-12-200550-3
\end{thebibliography}
2018-06-06 17:50:27 +02:00
\cleardoublepage
% List of figures (optional) - useful over 3-5 figures
%\phantomsection
%\addcontentsline{toc}{chapter}{\lstfigurelabel}
%\listoffigures
%\cleardoublepage
2018-06-06 17:50:27 +02:00
% List of tables (optional) - useful over 3-5 tables
%\phantomsection
%\addcontentsline{toc}{chapter}{\lsttablelabel}
%\listoftables
%\cleardoublepage
2018-06-06 17:50:27 +02:00
% List of algorithms (optional) - useful over 3-5 algorithms
%\phantomsection
%\addcontentsline{toc}{chapter}{\lstalgorithmlabel}
%\listofalgorithms
%\cleardoublepage
2021-07-04 22:26:20 +02:00
% List of codes (optional) - useful over 3-5 code samples
%\phantomsection
%\addcontentsline{toc}{chapter}{\lstcodelabel}
%\lstlistoflistings
%\cleardoublepage
% List of symbols (optional)
%\printnomenclature
2018-06-06 17:50:27 +02:00
\end{document}