%% FEUP THESIS STYLE for LaTeX2e
%% how to use feupteses (English version)
%% FEUP, JCL & JCF, October 2024
%%
%% Read the documentation inline and at
%% https://web.fe.up.pt/~jlopes/doku.php/teach/feupteses
%%
%% PLEASE send improvements to jcf at fe.up.pt and to jlopes at fe.up.pt
%%
%% This is the english version of the main file
\documentclass[11pt,a4paper]{report}
%% For two-sided printing (for dead-tree output) comment previous line
%% and uncomment the next line
%\documentclass[11pt,a4paper,twoside,openright]{report}
%% Source text uses in UTF-8 encoding
\usepackage[utf8]{inputenc}
%% The package feupteses.sty may take several options
%% There are options for specific FEUP programmes/degrees
%% When no programme specification is given, a generic thesis format is used
%%
%% option degree/programme
%% -----------------------------
%% meec Master's degree in Electrical and Computer Engineering
%% meic Master's degree in Informatics Engineering and Computation
%% mem Master's degree in Mechanical Engineering
%% mesw Master's degree in Software Engineering
%% mci Master's degree in Information Science
%% In general, the dissertation goes through several stages
%%
%% option stage
%% -----------------------------
%% (no option) text is in the preparation stage
%% juri version for evaluation by committee
%% final version for final submission (after accpetance)
%% Generic format (for other degrees, including Ph.D. programmes)
\usepackage{feupteses}
%% If you don't use a degree option, you must define the degree below
%% Additional options for feupteses.sty:
%% - portugues: titles, etc in portuguese
%% - onpaper: links are not shown (for paper versions)
%% - backrefs: include back references from bibliography to citation place
%% - iso: format references according to ISO 690 standard
%% Packages loaded by feupteses.sty
%% url, setspace, makeidx, graphicx, xcolor
%% Include here any other packages you need
%% TIP: use folder ``figures'' to keep all your figures
%% Path to the figures directory
\graphicspath{{figures/}}
%% Change to the appropriate bibliography file
\addbibresource{bibliography.bib}
%%========================================
%% Start of document
%%========================================
\begin{document}
%%----------------------------------------
%% Information about the work
%%----------------------------------------
\title{$<$Dissertation Title$>$}
\author{$<$Author's Full Name$>$}
%% Comment next line if not necessary for degree
\degree{Programa Doutoral em Engenharia Informática}
%% Uncomment next line for date of submission
%\thesisdate{July 31, 2008}
%% Comment next line copyright text if not used
\copyrightnotice{Name of the Author, 2008}
\supervisor{Supervisor}{Prof.\ $<$Name of the Supervisor$>$}
%% Uncomment next line if necessary
%\supervisor{Second Supervisor}{Prof.\ $<$Name of the Supervisor$>$}
%% Uncomment committee stuff in the final version if used
%\committeetext{Approved in oral examination by the committee:}
%\committeemember{President}{Prof.\ $<$Name of the Professor$>$}
%\committeemember{Referee}{Prof.\ $<$Name of the Professor$>$}
%\committeemember{Referee}{Prof.\ $<$Name of the Professor$>$}
%% uncomment next line to draw line for handwritten signature (if necessary)
%\signature
%% Specify cover logo (in folder ``figures'')
\logo{uporto-feup.pdf}
%% Uncomment next line for additional text below the author's name (front page)
%\additionalfronttext{<Additional text>}
%%----------------------------------------
%% Preliminary materials
%%----------------------------------------
% remove unnecessary \include{} commands
\begin{Prolog}
\include{abstract} % the abstract
\include{un-sdg} % United Nations Sustainable Development Goals (SGD)
\include{acknows} % the acknowledgments
\include{quote} % initial quotation if desired
\cleardoublepage
%% Uncomment next line for PT
%\renewcommand{\contentsname}{Índice}
\pdfbookmark[0]{Table of Contents}{contents}
\tableofcontents
\cleardoublepage
\pdfbookmark[0]{List of Figures}{figures}
\listoffigures
\cleardoublepage
\pdfbookmark[0]{List of Tables}{tables}
\listoftables
%% Abbreviations are in the `abbrevs.tex' file
%% Omit if there aren't any
\include{abbrevs} % the list of abbreviations used
\end{Prolog}
%%----------------------------------------
%% Body
%%----------------------------------------
\StartBody
%% TIP: use a separate file for each chapter
\include{chapter1}
\include{chapter2}
\include{chapter3}
%% Uncomment to see a listing example (cp meic.cfg meec.cfg)
%\include{chapter45-listing}
%%----------------------------------------
%% Final materials
%%----------------------------------------
%% Bibliography
\PrintBib
%% comment next 2 commands if numbered appendices are not used
\appendix
\include{appendix1}
\end{document}