%!TEX TS-program = pdflatex
%!TEX encoding = UTF-8 Unicode
\PassOptionsToPackage{table}{xcolor} % to use colors in tables
\PassOptionsToPackage{pdfa}{hyperref}
\documentclass{unipd-thesis-modern} % src: https://github.com/baronefr/unipd-thesis-modern
%  print layout: two-sided with binding on the left
% I recommend to validate/convert the PDF/A file with the following tool:
% https://www.pdfforge.org/online/en/validate-pdfa
% additional packages
\usepackage{lipsum} % for DEMO only
%% (optional) to add a draft watermark, uncomment the following:
%\usepackage[color={[gray]{0.85}}]{draftwatermark} 
% NOTE: high values -> less visible
% ToC customization
\usepackage[titles]{tocloft} % to modify spacing in toc chapters
\setlength{\cftbeforechapskip}{7pt}
\setcounter{tocdepth}{4} % ToC depth
% titles
\title{A modern template for a thesis\\at University of Padua}
\thesisHeader{University of Padua, Department of Physics and Astronomy ``G. Galilei''\\Master Thesis in Physics}
\academicYear{2024/2025}
% student
\author{Student Name Surname}
\studentId{1234567}
% supervisor(s)Zürich
\advisor{Prof. Erwin Schrödinger}{University of Zürich} % (mandatory)
\coadvisor{Dr. Batman Wayne}{University of Princeton} % (optional, comment to remove)
\otheradvisor{Prof. Paolino Paperino}{University of Padua} % (optional, comment to remove)
% ^ NOTE: you can use optional arg to customize the label "Internal Supervisor"
%   example:   \otheradvisor[The best supervisor!]{Prof. Paolino Paperino}{University of Padua}
% add notes at the bottom of the second page (optional)
\secondpage{\input{docs/secondcover}}
% dedication (comment to remove)
\dedication{\textit{To my parents\\and friends}}
% custom symbols (optional)
\input{custom-symbols}
% bibliography file
\addbibresource{refs.bib}
%% SUGGESTION: to print only the cover page with larger fonts and without watermark, uncomment the following:
%\begin{document}
%    \makecover
%\end{document}
\begin{document}
    % cover, ToC, abstract
    \frontmatter
    % main content
    \mainmatter
    % introduction -------------
    \input{chapters/introduction}
    \glsresetall  % reset gls after introduction (suggested, but optional)
    % --------------------------
    \part{\label{prt:demo}Demo of the template features} % NOTE: dividing in parts is optional
    \input{chapters/demo-basic}
    % NOTE: I suggest to create a file for each chapter, like the previous \input{}.
    % --------------------------
    \part{\label{prt:filler}Filler part}
    
    \input{chapters/demo-filler}
    % conclusion ---------------
    \input{chapters/conclusions}
    
    % appendices ---------------
    \begin{appendices}
        \include{chapters/demo-appendix}
    \end{appendices}
    % glossary, bibliography, acknowledges
    \backmatter
\end{document}