My Bachelor's thesis shows the format of the template below.
Here is the LaTeX document I used.
\documentclass[12pt,a4paper]{report} % Sets the document class to "report" with 12pt font size and A4 paper.
\usepackage[english]{babel}
\usepackage{graphicx} % Enables inclusion of images.
\graphicspath{ {/YOUR_PATH} } % Remember to replace `/YOUR_PATH` with your actual image directory.
\usepackage{newlfont}
\usepackage[T1]{fontenc}
\usepackage{indentfirst} % Indents the first paragraph of each section.
\usepackage{setspace}
\usepackage{hyperref} % Enables hyperlinks in the document.
\hypersetup{
colorlinks=true, % Makes hyperlinks colored.
linkcolor=black % Sets the hyperlink color to black.
}
\usepackage[a4paper,includeall,vmargin=1cm]{geometry} % Sets page margins.
\usepackage[hang]{footmisc} % Adjusts footnote formatting.
\usepackage{remreset} % Resets counters (useful for managing footnotes across chapters).
\usepackage[
backend=bibtex,
style=ieee % Uses the IEEE citation style.
]{biblatex} % Package for managing bibliographies.
\addbibresource{bibliography.bib} % Specifies the BibTeX file containing the bibliography entries. **Make sure you have a file named `bibliography.bib` in the same directory.**
\makeatletter
\@removefromreset{footnote}{chapter} % Prevents footnote counters from resetting at each chapter.
\makeatother
\setlength{\parindent}{0pt}
\textwidth=400pt % Sets the text width.
\oddsidemargin=30pt % Sets the left margin for odd pages.
\newenvironment{dedication}
{
\thispagestyle{empty}% no header and footer
\vspace*{\stretch{1}}% some space at the top
\itshape % the text is in italics
\raggedleft % flush to the right margin
}
{\par % end the paragraph
\vspace{\stretch{3}} % space at bottom is three times that at the top
\clearpage % finish off the page
}
\begin{document}
\begin{titlepage}
\begin{center}
{{\Large{\textsc{Alma Mater Studiorum $\cdot$ Universit\`a di
Bologna}}}} \rule[0.1cm]{15.8cm}{0.1mm}
\rule[0.5cm]{15.8cm}{0.6mm}
{\small{\bf School of Science\\
Computer science }}
\end{center}
\vspace{15mm}
\begin{center}
{\LARGE{\bf Title }}\\
\vspace{3mm}
{\LARGE{\bf ....}}\\
\end{center}
\vspace{50mm}
\par
\noindent
\begin{minipage}[t]{0.47\textwidth}
{\large{\bf Relatore:\\
Prof \\
}}
\end{minipage}
\hfill
\begin{minipage}[t]{0.47\textwidth}\raggedleft
{\large{\bf Presentata da:\\
Nome Cognome\\
}}
\end{minipage}
\vspace{75mm}
\begin{center}
{\large{\bf Sessione ...\\
\rule[0.1cm]{15.8cm}{0.1mm}
Anno Accademico 2022/2023}}
\end{center}
\end{titlepage}
\begin{doublespace}
\begin{dedication}
"Affermare che non si è interessati al diritto alla privacy perché \\
non si ha nulla da nascondere è come dire che non si è interessati \\
alla libertà di parola perché non si ha nulla da dire."\\
\textnormal{Edward Snowden}\\
\end{dedication}
\tableofcontents
\setlength{\footnotemargin}{1.1em}
\setlength{\skip\footins}{5em}
\include{capitolo1.tex}
\include{capitolo2.tex}
\include{capitolo3.tex}
\include{Conclusioni.tex}
\include{Bibliografia.tex}
\end{doublespace}
\end{document}