\documentclass{Template}
%----------------------------------------------------------------------------------------
% DOCUMENT INFORMATION
%----------------------------------------------------------------------------------------
\thesistitle{Project Title} % print it elsewhere with \ttitle
\authors{
\href{mailto:student1@uzh.ch}{Student 1 (XX-XXX-XXX)},
\href{mailto:student2@uzh.ch}{Student 2 (XX-XXX-XXX)},
\href{mailto:student3@uzh.ch}{Student 3 (XX-XXX-XXX)},
\href{mailto:student4@uzh.ch}{Student 4 (XX-XXX-XXX)}
} % print it elsewhere with \authorsnames or specificly with \authorsnames{1} \authorsnames{2}, etc
\supervisors{
\href{https://www.ius.uzh.ch/xxxx 1}{Prof. Dr. XXXX 1}, \href{https://www.ifi.uzh.ch/en/ddis/people/xxxx 2}{Prof. Dr. XXXX 2}
} % print it elsewhere with \supname{1} \supname{2}, etc
\university{\href{http://www.uzh.ch}{University of Zurich}} % print it elsewhere with \univname
\faculty{\href{https://www.ius.uzh.ch/}{Faculty of Law}} % print it elsewhere with \facname
\subject{Course Name} % print it elsewhere with \subjectname
\keywords{Artificial Intelligence, Technology, Law, AI} % print it elsewhere with \keywordnames
\addbibresource{references.bib}
\AtBeginDocument{
\hypersetup{
pdftitle={\ttitle},
pdfauthor={\authorsnames},
pdfkeywords={\keywordnames}
}
}
%----------------------------------------------------------------------------------------
% DOCUMENT STRUCTURE
%----------------------------------------------------------------------------------------
\begin{document}
\pagenumbering{roman}
\pagestyle{plain}
\include{CoverPage}
\selectlanguage{english}
\begin{center}
\tableofcontents % Prints the main table of contents
\include{Abbreviations}
\listoffigures % Prints the list of figures
\newpage
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\printbibliography
\end{center}
\pagenumbering{arabic} % Set page numbering to Arabic numerals (1, 2, 3...)
\include{Chapters/Chapter1}
\include{Chapters/Chapter2}
\include{Chapters/Chapter3}
\appendix % Tell LaTeX the following are appendices
\include{Appendix}
\include{Declaration}
\end{document}