Thesis Template for Computer Science at the University of Genova
Author
Carola Motolese
Last Updated
6年前
License
Creative Commons CC BY 4.0
Abstract
Master Thesis Template Computer Science, University of Genova
Master Thesis Template Computer Science, University of Genova
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%2345678901234567890123456789012345678901234567890123456789012345678901234567890
% 1 2 3 4 5 6 7 8
% DOCUMENT CLASS
\documentclass[oneside,12pt]{Classes/RoboticsLaTeX}
% USEFUL PACKAGES
% Commonly-used packages are included by default.
% Refer to section "Book - Useful packages" in the class file "Classes/RoboticsLaTeX.cls" for the complete list.
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{multirow}
\usepackage{colortbl}
\usepackage{color}
\usepackage[table]{xcolor}
\usepackage{epigraph}
\usepackage{graphicx}
%\usepackage{subfigure}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{hyperref}
\usepackage{tabularx}
\usepackage{float}
\usepackage{longtable}
\usepackage[pdftex]{graphicx}
\usepackage{pdfpages}
%\usepackage{tabularx}
\usepackage{pdflscape}
\usepackage[acronym,toc]{glossaries}
\usepackage{setspace}
\setstretch{1.5}
%\onehalfspacing
% SPECIAL COMMANDS
% correct bad hyphenation
\hyphenation{op-tical net-works semi-conduc-tor}
\hyphenation{par-ti-cu-lar mo-du-le ge-stu-re}
% INTERLINEA 1.5
%\renewcommand{\baselinestretch}{1.5}
%% ignore slightly overfull and underfull boxes
%\hbadness=10000
%\hfuzz=50pt
% declare commonly used operators
\DeclareMathOperator*{\argmax}{argmax}
% HEADER
\ifpdf
\pdfinfo {/Title (Example of PhD Thesis with RoboticsLaTeX template)
/Creator (TeX)
/Producer (pdfTeX)
/Author (Barbara Bruno, Fulvio Mastrogiovanni)
/CreationDate (D:20141024182500) %format D:YYYYMMDDhhmmss
/ModDate (20141024182500)
/Subject (Example of PhD Thesis with RoboticsLaTeX template)
/Keywords (PhD, Thesis, Example, RoboticsLaTeX)}
\pdfcatalog {/PageMode (/UseOutlines)
/OpenAction (fitbh) }
\fi
\title{\Large{Your Thesis Title}}
\ifpdf
\author{Mario Rossi
}
\collegeordept{Department of Computer Science, Bioengineering, Robotics and System Engineering (DIBRIS)}
\university{University of Genova}
\crest{\includegraphics[width=30mm]{logo_unige}}
\else
\author{Carola Motolese}
\collegeordept{Department of Computer Science, Bioengineering, Robotics and System Engineering (DIBRIS)}
\university{University of Genova}
\crest{\includegraphics[width=30mm]{logo_unige}}
\fi
% nome relatore tesi
\supervisor{Fulvio Mastrogiovanni}
% DECLARATION
% Use the following command to change the declaration text:
%\renewcommand{\submittedtext}{INSERT NEW TEXT HERE}
\degree{Master of Science in Engineering in Computer Science}
\degreedate{March 28, 2018}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\makeglossaries
\loadglsentries{glossary}
\begin{document}
% A page with the abstract and running title and author etc may be
% required to be handed in separately. If this is not so, comment
% the following 3 lines:
% \begin{abstractseparate}
% \input{Abstract/abstract}
% \end{abstractseparate}
\begin{spacing}{1}
\maketitle
\end{spacing}
% add an empty page after title page
\newpage\null\thispagestyle{empty}\newpage
% set the number of sectioning levels that get number and appear in the contents
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\frontmatter
\include{Acknowledgement/acknowledgement}
\include{Dedication/dedication}
\include{Abstract/abstract}
\tableofcontents
\listoffigures
\listoftables
\printglossary[title=List of Acronyms,type=\acronymtype]
%\printglossary % Print the nomenclature (WAY TOO COMPLEX FOR ME NOW!)
%\addcontentsline{toc}{chapter}{Nomenclature}
\mainmatter
\include{Introduction/introduction}
\include{Chapter1/chapter1}
\include{Chapter2/chapter2}
\include{Chapter3/chapter3}
\include{Chapter4/chapter4}
\include{Conclusions/conclusions}
\appendix
%\include{Appendix1/appendix1}
%\include{Appendix2/appendix2}
%\bibliographystyle{Classes/RoboticsBiblio} % bibliography style
\bibliographystyle{ieeetr}
\renewcommand{\bibname}{References} % change default name Bibliography to References
\bibliography{References/references} % References file
\addcontentsline{toc}{chapter}{References} % add References to contents page
%\addcontentsline{toc}{section}{References}
\nocite{*}
\end{document}