Faculty of Sciences of Sfax (FSS) Report Template
Author
Montasser AKERMI
Last Updated
2년 전
License
Creative Commons CC BY 4.0
Abstract
This is a report template for bachelor, master, and PhD students at the Faculty of Sciences of Sfax
This is a report template for bachelor, master, and PhD students at the Faculty of Sciences of Sfax
% #######################################
%
% Author: Montasser AKERMI
% Date: 2022-05-20 08:09:06
% Last Modified by: Montasser AKERMI
% Last Modified time: 2022-08-06 17:20:22
%
% (*) THIS IS THE MAIN FILE
% (*) Pages like title, author's declaration, abstract, etc are located in "misc" directory
% (*) Chapters are located in "chapters" directory, and included using the "chapters_main.tex" file
% (*) Figures are located in "figures" directory
% (*) Add references in references.bib file in BibTeX format
%
% #######################################
\documentclass[12pt, a4paper]{report}
% all the other includes etc. are done in the thesis.sty file.
\usepackage{thesis}
\usepackage{ifthen}
\usepackage{datetime}
\renewcommand{\dateseparator}{-} % The ISO standard uses hyphens
% Document title and type
\newcommand{\doctitle}{Thesis Title} % The title of the thesis
\newcommand{\doctype}{Master's Thesis}
% PhD Thesis
% Master's Thesis
% Bachelor's Thesis
% Thesis
% Dissertation
% End of Studies Project Report
% Graduation Project Report
% ...
% Info about university
\newcommand{\department}{Computer Science and Communication Department} % department
\newcommand{\degree}{Research Master} % your degree (Licence, Bachelor, Applied Master, PhD, etc)
\newcommand{\major}{Computer Science} % your major (Mathematics, Chemistry, Biology, etc)
\newcommand{\defenseDate}{July 2020} % defence date
% Thesis author
\newcommand{\authorName}{Author Name}
% Main supervisor
\newcommand{\supervisor}{Mr. Supervisor's Name}
% Co-supervisor. If you have only one supervisor, leave it as it is
\newcommand{\cosupervisor}{Mr. Co-Supervisor's Name}
% Committee members
\newcommand{\president}{Mr. President's Name}
\newcommand{\reviewer}{Ms. Reviewer's Name}
\newcommand{\secondReviewer}{Mr. Second Reviewer's Name}
\newcommand{\thirdReviewer}{Mr. Third Reviewer's Name}
% Dates. Default to current current date.
\newcommand{\Year}{\the\year{}}
% Signature date (defaults to today).
\newcommand{\signatureDate}{\ddmmyyyydate\today}
% PDF Metadata
\newcommand{\keywords}{Important, comma, separated, keywords, applicable, to, your, thesis}
\newcommand{\university}{University of Sfax}
\newcommand{\school}{Faculty of Sciences of Sfax}
% PDF settings
\hypersetup
{
pdfauthor={\authorName},
pdfsubject={\doctitle},
pdfkeywords={\keywords}
}
% begin document
\begin{document}
% misc
\input{misc/misc_main}
% chapters
\input{chapters/chapters_main.tex}
% references
\pagebreak
\phantomsection
\addcontentsline{toc}{chapter}{References}
\printbibliography[title=References]
\renewcommand{\thechapter}{\arabic{chapter}}
\end{document}