👉🏻 Follow this tutorial
\documentclass[12pt, singleside]{report}
\usepackage[a4paper, left=20mm, right=20mm, top=20mm, bottom=20mm]{geometry}
% --- Lingua e formattazione ---
\usepackage{unibo_thesis}
\usepackage[british]{babel} % Lingua inglese britannica
\usepackage[utf8]{inputenc} % Codifica UTF-8
\usepackage[T1]{fontenc} % Font encoding T1 per output corretto
% --- Pacchetti utili ---
\usepackage{amsmath, amssymb} % Matematica
\usepackage{tikz} % Pacchetto TikZ per grafici
\usepackage{graphicx} % Inserimento immagini
\usepackage{hyperref} % Link nel PDF
\usepackage{csquotes} % Citazioni eleganti
\usepackage{lmodern}
\usepackage{pdfpages} % embedd pdf
\usepackage{csquotes} % Citazioni eleganti
\usepackage[backend=biber,style=ieee]{biblatex} % Bibliography package
% --- Aggiungere il file .bib ---
\addbibresource{./bibliography/references.bib} % This tells LaTeX where to find the bibliography file
\setmainfont{Times New Roman} % Imposta Times New Roman come font principale del documento
\begin{document}
\title{Thesis title here}
\department{DEPARTMENT NAME}
\thesistype{PhD DISSERTATION} % or MASTER THESIS, BACHELOR THESIS
\topic{TOPIC}
\course{Course name}
\candidate{John Smith}
\supervisor{Prof.~Mario Rossi}
\cosupervisors{& Dott.~Ing.~Luigi Bianchi\\& Dott~Avv.~Lucia Rossi}
\academicyear{2025-2026}
\session{1st}
\frontispiece
\dedication{dedicated(X) :- friend(X).}
\toc
\figstoc
\tablestoc
\begintext
% --- Abstract
\include{chapters/abstract} % All'interno del file usare \chapter* e \addcontentsline
% --- Introduzione (senza numerazione) ---
\include{chapters/introduction} % All'interno del file usare \chapter* e \addcontentsline
% --- Capitoli numerati ---
\include{chapters/chapter1} % Capitolo 1
\include{chapters/chapter2} % Capitolo 2
\include{chapters/chapter3} % Capitolo 3
% --- Bibliografia ---
\printbibliography[heading=bibintoc] % biblatex
% --- Fine del documento ---
\end{document}