
SoE Thesis Template
Author
Frédéric Bosché, Daniel Fosas de Pando and Antonis Giannopoulos
Last Updated
hace un mes
License
Creative Commons CC BY 4.0
Abstract
MSc/MEng/BEng Thesis Template created by the Civil Engineering discipline.

MSc/MEng/BEng Thesis Template created by the Civil Engineering discipline.
%% thesis.tex
%% Model LaTeX file for MEng/BEng thesis
%% School of Engineering, University of Edinburgh
%% v 1.0 2022-09 - First release
%% v 1.1 2022-11 - Added SAFE, IMFSE and LMP programmes
%% v 1.2 2023-11 - Minor corrections (typos) and clarifications
%% The following defines the document class used to structure and format your thesis. Do not change this.
\documentclass[11pt,twoside,openright]{report}
%% The following are packages that are used by the template and that you will likely need for your content. Do not change this.
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{cmbright}
\usepackage{hologo}
\usepackage{natbib}
\citestyle{aysep={,}}
\usepackage{graphicx}
\usepackage{float}
\usepackage{setspace}
\usepackage{url}
\usepackage[nottoc]{tocbibind}
\usepackage{enumitem}
\usepackage{subcaption}
\usepackage{siunitx}
%% Under this line, you can add additional packages that you may need for typesetting your document.
%\usepackage{...}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% The following says that all graphics (e.g. jpg, png, etc. files) will be searched in the "Figures/" folder.
%% Do not change it, but ensure you indeed put your figures in that folder.
\graphicspath{{Figures/}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Change \title, \author, \supervisor and \wordcount
%% to your thesis title, your name., your supervisor's name and the word count of your thesis.
%% Do not touch \date.
\title{Thesis Title}
\author{Author Name}
\date{\the\year{}}
\newcommand{\supervisor}{[Prof/Dr] Supervisor Name}
%\newcommand{\wordcount}{1,000}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% The following loads the package UEDIN_SoE that has been setup specifically to format theses
%% of students in Civil and Environmental Engineering MEng/BEng programmes.
%% In the line below, replace "mengSEWA" with any of the following:
%% - "mengCE" if you study on the "MEng Civil Engineering"
%% - "bengCE" if you study on the "BEng Civil Engineering"
%% - "mengSAFSE" if you study on the "MEng Structural and Fire Safety Engineering"
%% - "bengSAFSE" if you study on the "BEng Structural and Fire Safety Engineering"
%% - "mengSEWA" if you study on the "MEng Structural Engineering with Architecture"
%% - "bengSEWA" if you study on the "BEng Structural Engineering with Architecture"
%% - "mcssafe" if you study on the "MSc in Structural and Fire Safety Engineering (SAFE)"
%% - "imfse" if you study on the "International Master of Science in Fire Safety Engineering (IMFSE)"
%% - "msclmp" if you study on the "MSC Leading Major Programmes (LMP)"
\usepackage[mengSEWA,fancyhdr,hyperref,colour]{UEDIN_SoE}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\doublespacing
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% The following defines the title page and the frontmatter.
%% To change the content of the frontmatter, go to "frontmatter.tex".
\maketitle
\pagenumbering{roman}
\include{frontmatter}
\pagenumbering{arabic}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% The main content starts here.
\chapter{Introduction}
\label{ch:introduction}
This \LaTeX{} template and the instructions it contains will enable you to prepare your manuscript in an electronic format (pdf).
Authors are responsible for ensuring the accuracy of all information contained in their manuscripts (e.g. proper names of organisations, data and findings, references, etc.).
\hologo{LaTeX} is a highly advanced type-setting system with a large number of various packages that can be loaded on demand to access certain type-setting functionalities.
Overleaf is a web-service that enables you to write and type-set \LaTeX{} documents even more easily, as (1) it does not require you to install anything on your computer, (2) it saves your document securely online; and (3) it even implements version control so that you could return to some prior version of your document if really necessary.
It is not the intention of this template to list everything possible with \LaTeX.
However, it will guide you for the most important type-setting issues you will definitely and/or most likely deal with.
You will see that, for many of them, we in fact direct you to online resources. This is because these are already of excellent quality and are continuously maintained. It also shows that, when it comes to \LaTeX{}, if you have a question, your best option to find the answer is to search online.
\section{Resources}
\label{sec:Resources}
We provide some explanations in the following sections on how to create and populate a \LaTeX{} document,
but bear in mind that the following resources will soon come in handy.
\begin{description}
\item[\href{https://learnxinyminutes.com/docs/latex}{LearnXinYminutes / LaTeX}]
This gives a quick tour of \LaTeX{} (5 to 10 minutes).
It is not meant to be a comprehensive, authoritative resource, but rather an overview of how it works and how to think about it.
At the end of the tour it lists very useful resources.
\item[\href{https://www.overleaf.com/learn}{Overleaf's documentation}]
This template is hosted in Overleaf, an incredibly useful service for \LaTeX{}.
The documentation is quite useful, and includes a 30-minute overview of \LaTeX{} as well as general introduction to key ideas.
\item[\href{https://en.wikibooks.org/wiki/LaTeX}{WikiBook / LaTeX}]
An amazing online guide to \LaTeX{}.
It is well structured, comprehensive, and is easy to navigate.
\item[\href{https://www.overleaf.com/gallery}{Overleaf's templates}]
It is very common to have a look around and find other people's documents doing things that you might want to replicate in your document in terms of \LaTeX{} is used.
For example, Overleaf includes a gallery that showcases things that might be helpful.
\item[\href{https://tex.stackexchange.com/}{StackExchange / Tex}]
Questions-Answers website for all things \LaTeX{}.
Very often you can just literally write what you are trying to do
and it will retrieve useful answers.
In fact search engines often return StackExchange pages.
\item[\href{https://ctan.org/}{CTAN}]
CTAN is the Comprehensive TeX Archive Network.
This is the main repository of all the packages that are available in \LaTeX{}.
Packages tend to have great documentation.
For example:
\begin{description}
\item[\href{https://ctan.org/pkg/hyperref}{hyperref}]
This is the package we use for cross-referencing and hyperlinks
in this template.
\item[\href{https://ctan.org/pkg/siunitx}{siunitx}]
This package supports typesetting values with units.
\end{description}
\end{description}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{File Structure}
Documents prepared and compiled with \LaTeX{} contain in fact a number of files.
The general principle is to dissociate content from formatting (aka typesetting) information | following a similar idea to web technology where HTML files normally contain content information while CSS files contain formatting information. The main file types are:
\begin{itemize}[noitemsep]
\item \verb|.tex| files: these files contain the content of your thesis. Not all the content has to be in one single file. It is totally fine to split it in multiple \verb|.tex| files, for example one per chapter. In this case, one \verb|.tex| file acts as the main document and the other ones are called within it, using the function \verb|\include{...}|. In this template, the main document is the file \verb|thesis.tex| and, while most of the content is within it, the front matter content is in the \verb|frontmatter.tex| file which is included in \verb|thesis.tex|. Similarly, the acronyms and nomenclature entries are contained in the \verb|definitions.tex| file, and that file is called inside \verb|frontmatter.tex| (albeit with a different mechanism). More information about the front matter is found in \cref{subsec:frontmatter}.
Note that some typesetting information may be provided to \verb|.tex| files, but this should be for adhoc typesetting needs not covered in the other files described below.
\item \verb|.sty| files: these files define what are called \emph{packages} that define typesetting. First, as you can see at the top of the \verb|thesis.tex| file, this thesis template uses the `report' \verb|documentclass|. That document class already comes with a number of pre-defined typesetting definitions. but, these can be altered or augmented with additional typesetting definitions by loading \emph{packages}. Packages come in two forms; they are either:
\begin{itemize}[noitemsep]
\item Ad-hoc \verb|.sty| files that are added to your latex project. For example, this thesis template includes the \verb|UEDIN_SoE.ply| package; or
\item Existing packages that can simply be loaded in \verb|.tex| or \verb|.ply|. Existing packages are loaded using the \verb|\usepackage{...}| function and you can see at the beginning of the \verb|thesis.tex| file that this thesis template already loads a dozen packages. While we think these packages should already enable you to do most things you may wish to do in a thesis (e.g. add URLs or having figures with sub-figures), you may have additional needs. For this, simply search the resources listed in \cref{sec:Resources}.
\end{itemize}
\item \verb|.bib| files: these are what are called Bibtex files. Bibtext is a open standard file format which is used to describe lists of references. This template document contains the \verb|thesisReferences.bib| file that contains the references that you wish to cite in the thesis. The file is called at the end of the \verb|thesis.tex| file (because the list of references goes at the end of the thesis), with the command \verb|\bibliography{thesisReferences}|.
More information about how to add content to \verb|thesisReferences.bib| and cite those references in your thesis is provided in \cref{sec:References}.
\item Graphics/Image files: these are the graphics and images you wish to add to your thesis as figures. \hologo{LaTeX} supports many grapchics and image file formats, including: \verb|.png|, \verb|.jpeg| (\verb|.jpg|), \verb|.pdf| and \verb|.eps|.
You are most certainly familiar with the first three, but likely not the last one.
In fact, one should distinguish them in two groups:
\begin{itemize}[noitemsep]
\item \emph{Raster formats} (\verb|.png| and \verb|.jpeg| (\verb|.jpg|)): these file formats store the graphic information as an array of pixels. This means that their file size grows with the number of pixels. These formats are recommended for storing photos/pictures or other types of graphics when the second group of formats below cannot be used or is not available.
\item \emph{Vector formats} (\verb|.eps| and \verb|.pdf|): these file formats store the graphic information in a vector format. For example, instead of storing a black line as a series of pixels, it will store it as a line object with a start and end point and a black colour. They also store text as actual text. These formats are ideal to store graphs, diagrams and similar graphic objects. Note that using these formats normally lead to smaller file sizes (the image itself AND your final thesis), and they respond much better to graphic sizing in the template (e.g. adjusting text font size in accordance with the scaling of the image in the document). Importantly, note that if you take a graphic in raster format and save it in a vector format, it will not magically change the pixels into smart graphic objects. Any content in raster format will simply be re-included as raster content in the file.
\end{itemize}
%
More information about how to generate vector graphic content and adding figures to your document is provided in \cref{sec:tables}.
\end{itemize}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Text Structure}
\label{sec:TextStructure}
The thesis is composed of each chapters that are themselves composed of sections, sub-sections, etc.
To create such a heading structure, you can use the commands \verb|\chapter{}|, \verb|\section{}|, \verb|\subsection{}|, \verb|\subsubsection{}|, and \verb|\paragraph{}|.
Note that, while \verb|\section{}| should be inside a \verb|\chapter{}|, a \verb|\subsection{}| inside a \verb|\section{}|, etc., a \verb|\paragraph{}| is not numbered and can thus be added inside any of those.
If you wish to cross-reference a heading elsewhere in the text, you will need to do two things.
First you must give that heading a \emph{label} using the command \verb|\label{}|, e.g. \verb|\label{sec:TextStructure}|. This label should be put right after the heading declaration: either on the same line or the next one.
Then, you can cross-reference the heading in the text using either of the following commands:
\begin{itemize}
\item \verb|\ref{}|, e.g. \verb|\ref{sec:TextStructure}|, which gives you just the heading number. This sentence is an example that makes reference to section \ref{sec:TextStructure} (i.e. this section).
\item \verb|\cref{}|, e.g. \verb|\cref{sec:TextStructure}|, which gives you the heading type and number. This sentence is an example that makes reference to \cref{sec:TextStructure}.
\item \verb|\crefrange{}{}|, e.g. \verb|\cref{sec:TextStructure}{sec:figures}|, which gives you the heading type and numbers of a sequence of headings. This sentence is an example that makes reference to \crefrange{sec:Resources}{sec:figures}.
\end{itemize}
\subsection{Front matter}
\label{subsec:frontmatter}
The front matter of your thesis contains the title page and a number of sections, some mandatory, others optional.
In order, these are:
\begin{description}
\item [Title page:] This is generated automatically by \LaTeX{}. To ensure it is complete, you must just enter your thesis title in the command \verb|\title{}| and your full name in the command \verb|\author{}|, both located at the beginning of the file \verb|thesis.tex|.
\item [Declaration:] This is generated automatically by \LaTeX{}. To ensure it is complete, you must just enter your full name in the command \verb|\author{}| (as already explained for the title page) and your supervisor's name in the command \verb|\supervisor{}|, both located at the beginning of the file \verb|thesis.tex|. The text content of the declaration is defined in the corresponding environment located in the file \verb|\frontmatter.tex|. However, you should not need to alter it. Also, note that the declaration page also adds your thesis word count automatically.
\item [Abstract:] This is mandatory. Your abstract should be in the region of 300 words long, containing 6 to 8 sentences covering the following:
\begin{enumerate}[noitemsep]
\item The scientific domain and the problem within the domain which is the subject matter of the thesis;
\item The research question to be answered in the thesis;
\item The means and methods (scientific tools) used to obtain the answer to the stated research question;
\item The answer to the research question; and
\item The meaning and importance of the answer and the results obtained,
\end{enumerate}
The text content of the abstract must be entered in the corresponding environment located in the file \verb|\frontmatter.tex|.
\item [Dedication:] This is optional, but commonly used by the students to thank various people for their support. The text content of the dedication must be entered in the corresponding environment located in the file \verb|\frontmatter.tex|.
\item [Table of Content:] This is generated automatically by \LaTeX{}.
\item [List of Figures:] This is generated automatically by \LaTeX{}.
\item [List of Tables:] This is generated automatically by \LaTeX{}.
\item [Abbreviations:] This is required if you use abbreviations, in particular acronyms, in your thesis (which is very likely). All acronyms must be defined in the file \verb|definitions.tex|, as illustrated in it.
\item [Nomenclature:] This is optional but welcome if you use many mathematical variables throughout your thesis. All terms/variables must be defined in the file \verb|definitions.tex|, as illustrated in it.
\end{description}
\subsection{Lists}
\label{subsec:lists}
\begin{enumerate}[noitemsep]
\item Numbered lists should be presented using the environment \verb|enumerate| like in this example.
This environment applies the numbering and defines the format and spacing automatically.
\item Add the option \verb|[noitemsep]| to the environment to have no additional space between numbered list items (like is done here).
\end{enumerate}
\begin{itemize}
\item Bulleted lists should be presented using the environment \verb|itemize| like in this example.
This environment applies the numbering and defines the format and spacing automatically.
\item Add the option \verb|[noitemsep]| to the environment to have no additional space between bulleted list items (this is not done here).
\end{itemize}
\begin{description}[noitemsep]
\item[Label 1] Finally, description lists can be created when a label is preferred for each entry, as opposed to a bullet of a number.
\item[Label 2] Add the option \verb|[noitemsep]| to the environment to have no additional space between bulleted list items (like is done here).
\end{description}
%
Note that the three lists above were generated using the environments and options described within them.
More information on how to create and format lists can be found at \url{https://www.overleaf.com/learn/latex/Lists}.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Figures}
\label{sec:figures}
The lines below show an example of \LaTeX{} code to create a environment that displays the image \verb|graph_a.pdf|, gives it a caption and centres everything. It also gives the figure a label so that it can be easily cross-referenced in the text. The figure produced by that code is also shown as \cref{fig:graph_a}.
\begin{verbatim}
\begin{figure}[!ht]
\centering
\includegraphics[scale=0.7]{graph_a.pdf}
\caption{An example graph in PDF format.}
\label{fig:graph_a}
\end{figure}
\end{verbatim}
\begin{figure}[!ht]
\centering
\includegraphics[scale=0.7]{graph_a.pdf}
\caption{An example graph in PDF format.}
\label{fig:graph_a}
\end{figure}
Note that you normally have to give the full path of an image in the \LaTeX{} project tree in order for it to be retrieved and loaded successfully.
To keep things tidy, we created a folder \emph{Figures} in the thesis project file structure and added the line \verb|\graphicspath{{Figures/}}| at the beginning of the \verb|thesis.tex| file.
This way, if you upload all your images in the folder \emph{Figures}, then in the command \verb|includegraphics{}| you only need to give the image filename, and not the full path to that image file.
More information on how to create and format figures can be found at \url{https://www.overleaf.com/learn/how-to/Including_images_on_Overleaf}.
Sometimes, you may wish to compose a figure with a number of subfigures. This is possible using the package \verb|subcaption|.
Details on how to create a figure with subfigures can be found at \url{https://www.overleaf.com/learn/latex/How_to_Write_a_Thesis_in_LaTeX_(Part_3)\%3A_Figures\%2C_Subfigures_and_Tables}.
Note that many other formatting options exist. For example, you can put a figure in landscape mode using the environment \verb|sidewayfigure| provided by the package \verb|rotating|.
More information on how to create and format figures can be found at \url{https://www.overleaf.com/learn/latex/Inserting_Images}.
But, once again, if you have any specific need, we recommend you search for solutions at the locations suggested in \cref{sec:Resources} or by using your favourite search engine.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Tables}
\label{sec:tables}
The lines below show an example of \LaTeX{} code to create a environment that defines a table \verb|graph_a.pdf|, gives it a caption and centres everything.
It also gives the table a label so that it can be easily cross-referenced in the text. The table produced by that code is also shown as \cref{tab:MyFirstTable}.
\begin{verbatim}
\begin{table}[!ht]
\centering
\begin{tabular}{||c c c c||}
\hline
Col1 & Col2 & Col2 & Col3 \\
\hline\hline
1 & 6 & 87837 & 787 \\
2 & 7 & 78 & 5415 \\
3 & 545 & 778 & 7507 \\
4 & 545 & 18744 & 7560 \\
5 & 88 & 788 & 6344 \\
\hline
\end{tabular}
\caption{Table to test captions and labels.}
\label{tab:MyFirstTable}
\end{table}
\end{verbatim}
\begin{table}[!ht]
\centering
\begin{tabular}{||c c c c||}
\hline
Col1 & Col2 & Col2 & Col3 \\
\hline\hline
1 & 6 & 87837 & 787 \\
2 & 7 & 78 & 5415 \\
3 & 545 & 778 & 7507 \\
4 & 545 & 18744 & 7560 \\
5 & 88 & 788 & 6344 \\
\hline
\end{tabular}
\caption{Table to test captions and labels.}
\label{tab:MyFirstTable}
\end{table}
In this code, the \emph{table} environment (i.e. \verb|\begin{table}...\end{table}|) creates a floating environment of the type 'table' that can be given a caption and a label.
\verb|\centering| centres the table inside that table floating environment.
Then, the \emph{tabular} environment is the environment that contains the description of the table.
The tabular environment argument tells LaTeX the alignment to be used in each column and the vertical lines to insert.
In the table above, \verb!||c c c c||! defines a table with four columns in all of which the text is centered. It also instructs that double vertical lines should bound the table on the left and right.
Inside the \emph{tabular} environment, \verb|\hline| creates a horizontal line through the table (you can use the command \verb|\cline{...}| to make a horizontal line that only spans a subset of the columns). Finally, each row of data is entered with the cell content delimited with the character \verb|&| and the end of the row marked with the characters \verb|\\|.
If you wish to merge some cells together horizontally or vertically, use the \verb|\multicolumn{...}|) or \verb|\multirow{...}| commands, the latter requiring the \emph{multirow} package.
If you have to insert a very long table, which takes up two or more pages in your document, use the \emph{longtable} package. If you wish to have your table in landscape mode, consider using the \emph{sidewaystable} or \emph{landscape} packages.
More information on how to create and format tables (including how to colour rows/cells) can be found at \url{https://www.overleaf.com/learn/latex/Tables} and many other places at the resources listed in \cref{sec:Resources} and elsewhere on the web.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Mathematical Formulas}
Mathematical expressions, including formulas, can be entered in two different ways: \emph{inline} mode or \emph{display} mode. Inline mode means that the mathematical expression will appear within the text; display mode means that it will appear in a separate line (or set of lines).
You can use two types of delimiters to typeset mathematical expressions in inline mode, \verb|\(...\)| or \verb|$...$|, or the \emph{math} environment \verb|\begin{math}...\end{math}|.
An example is the formula $M = A + B$.
You can use the delimiters \verb|\[...\]| or the \emph{equation} or \emph{align} environments \verb|\begin{equation}| \verb|...\end{equation}| to typeset mathematical expressions in display mode.
\LaTeX{} is extremely powerful in general, but in particular when it comes to typesetting mathematical expressions, such as equations. The equation below is just one example. As you can see, you can use an extremely broad range of Greek letters and mathematical symbols. A first list of mathematical symbols can be found at \url{https://www.overleaf.com/learn/latex/List_of_Greek_letters_and_math_symbols} with an even more detailed list of symbols available at \url{https://oeis.org/wiki/List_of_LaTeX_mathematical_symbols}
\begin{align*}
S(\omega)
&= \frac{\alpha g^2}{\omega^5} e^{[ -0.74\bigl\{\frac{\omega U_\omega 19.5}{g}\bigr\}^{\!-4}\,]} \\
&= \frac{\alpha g^2}{\omega^5} \exp\Bigl[ -0.74\Bigl\{\frac{\omega U_\omega 19.5}{g}\Bigr\}^{\!-4}\,\Bigr]
\end{align*}
Further details about typesetting mathematical expressions can be found at \url{https://www.overleaf.com/learn/latex/Mathematical_expressions}.
\section{Properly typeset units}
In any scientific and engineering piece of work units play a major part. Without them our numerical information is practically useless. We need to be able to properly typeset them as in publishing they often do follow specific rules that sadly most of the time simple word processing packages ignore. Units for example are not set in italics or in random fonts that we seem to be using.
There are many \LaTeX{} packages you can use and explore to help you typeset units properly but in this template we use the \verb|siunitx| package.
For example, \verb|\unit{kg.m.s^{-1}}| produces \unit{kg.m.s^{-1}}. \verb|\unit{\kilogram\metre\per\second}| produces the same output \unit{\kilogram\metre\per\second}.
If you want to nicely refer to an angle you can just type \verb|\ang{10}| to get \ang{10} or \verb|\ang{3;23;5}| for \ang{3;23;5} or type \verb|\qty{3}{mm}| for \qty{3}{mm} or more explicitly \verb|\qty{3}{\milli\metre}| for the same effect as \qty{3}{\milli\metre}.
\verb|\qtylist{5;10;15}{\metre}| will produce nicely \qtylist{5;10;15}{\metre}.
\verb|\qtyproduct{5 x 10 x 15}{\metre}| produces \qtyproduct{5 x 10 x 15}{\metre}.
The options are very comprehensive, and no matter how complex or simple your units are they will be typeset properly and beautifully.
Detailed instructions on how to use the various commands that the \verb|siunitx| package makes available for typesetting units properly are given in \url{https://mirror-hk.koddos.net/CTAN/macros/latex/contrib/siunitx/siunitx.pdf}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{List of References and Citations}
\label{sec:References}
Citations of works that support your arguments and are used to reference and acknowledge the original source of information that you use, discuss or develop, is very easy.
\LaTeX{} uses a specific methodology to describe and process lists of references: Bibtex (\url{http://www.bibtex.org}) .
Bibtex manifest itself in your \LaTeX{} project in the form of a file with extension \verb|.bib|.
In the current project, the file is called \verb|thesisReferences.bib|.
The file has a simple text format and essentially contains a database of entries.
The most common entry is for an \verb|@article| but there are many more as can be seen in the example file \verb|thesisReferences.bib|.
What is important is that every entry you create has its own unique label that is then used to \emph{cite} the entry appropriately in your \LaTeX{} text and create the list of references that is created automatically and included at the end of our thesis.
Citations in the text are made using the commands \verb|\citet| and \verb|\citep| and possibly \verb|\citeauthor| or other forms of citation commands useful for more specific cases.
For example, "\citet{Zhuang2021ALearning} provided a comprehensive survey in their review paper" is obtained using the command \verb|\citet{Zhuang2021ALearning}|.
This command creates an entry that has the authors names as part of the sentence (here used as subjects).
In contrast, "a comprehensive survey is provided in \citep{Zhuang2021ALearning}" is obtained using the command \verb|\citep{Zhuang2021ALearning}|.
This commands just creates an entry that is just citation to the reference.
Also note that an entry in the list of references, located at the end of the thesis.
You must let \LaTeX{} know where the bib file is that contains the details of the references that you cite in you \verb|tex| file.
This is done by adding the command \verb|\bibliography{file.bib}| in your main \verb|.tex| file.
In this thesis template, \verb|\bibliography{thesisReferences.bib}| is added at the end of the \verb|thesis.tex| file.
\LaTeX{}, in combination with its bibliography packages, can create any style of referencing that you might need and more information can be found at \url{https://www.overleaf.com/learn/latex/Bibliography_management_with_natbib} or using different packages \url{https://www.overleaf.com/learn/latex/Bibliography_management_with_bibtex} or alternatively \url{https://www.overleaf.com/learn/latex/Bibliography_management_with_biblatex}.
However, for this thesis template, we have already selected the AGSM style (and suggest you keep it) that is defined in the \verb|thesis.tex| file with the command \verb|\bibliographystyle{agsm}|.
\section{Internal references to objects}
\label{ch:examples-internal_references}
Your work will have internal references to various objects like equations, figures, chapters, sections, etc. Let's have a look at some examples.
\begin{equation}\label{eq:heatbalance}
S = M - W - E \pm R \pm C .
\end{equation}
\begin{equation}\label{eq:pmv}
\text{PMV} = balance \cdot (0.303 \cdot e^{-0.036 \cdot M} + 0.028)
\end{equation}
\begin{equation}\label{eq:ppd}
\text{PPD} = 100 - 95 \cdot e^{-0.03353 \cdot \text{PMV}^4 - 0.2179 \cdot \text{PMV}^2}
\end{equation}
To reference a single object, \verb|\cref{eq:heatbalance}| will produce \cref{eq:heatbalance} for the first equation above, and \verb|\cref{fig:graph_a}| will produce \cref{fig:graph_a} for the figure introduced earlier.
Note that it picks up the type of reference automatically (\emph{eq.},\emph{ fig.}, etc.) automatically from the place and context of the label.
It is good practice to try and name labels by giving an indication of what they represent, although \LaTeX{} does not in fact require this.
To reference a range use \verb|\crefrange{}{}|.
For example, \verb|\crefrange{eq:heatbalance}{eq:ppd}| produces \crefrange{eq:heatbalance}{eq:ppd}.
The next sentence begins with a reference, so the command \verb|\cref{}| is changed to \verb|\Cref{}|.
\Cref{eq:heatbalance} is indeed a very important one!
You can change the style of references by looking at the manual of the package (see opening paragraph in \cref{ch:examples-internal_references}).
\section{Acronyms}
There are several ways of introducing acronyms.
In general it is good practice to introduce them in full on first use.
For example, \verb|\gls{CVRMSE}| produces \gls{CVRMSE}, and it shows in full because
it is the first time it is being used.
Next usage should not expand as it has already been introduced, as shown next: \gls{CVRMSE}.
Acronyms that are very familiar in the field or self explanatory may not be expanded on any use.
For example, \verb|\acrshort{CO2e}| produces \acrshort{CO2e}.
Some other times, the usage is so sporadic
(e.g., used in the first chapter and used again 50 pages later)
that you might want to force showing it in full regardless of previous use:
\verb|\acrfull{CIBSE}| displays \acrfull{CIBSE}
(this comes in handy sometimes for captions of figures and tables to help the reader).
You can even show the definition without using the acronym at all:
\verb|\acrlong{CIBSE}| produces \acrlong{CIBSE}.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\chapter{Conclusion}
\label{ch:conclusion}
The conclusion of your thesis.
Note that you can also add Appendices.
Appendices are introduced with the command \verb|\appendix| (see at the end of the \verb|thesis.tex| file) and each appendix is then entered as a chapter that can then be cross-referenced, like the example \cref{app:AppendixA} in this thesis template.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The following sets the list of references. Do not change this.
\renewcommand{\bibname}{References}
\bibliographystyle{agsm}
\bibliography{thesisReferences}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The following is to add any appendix. Comment the following out if you are not adding any appendix
\appendix
\chapter{My First Appendix}
\label{app:AppendixA}
The context of Appendix A.
\end{document}