You probably have downloaded the templates as a zip file.
This zip file should be \emph{extracted to the texmf} folder that will either need to be created in your user directory or will be near your installation directory.
For TeXLive this defaults to \verb|<userdirectory>\texlive| on Windows. It can be found by running the command \verb|kpsewhich -var-value=TEXMFHOME|. For MiKTeX see \url{https://miktex.org/kb/texmf-roots}.
For MikTeX you will need to update the file name database (FNDB).
The structure of this folder should look like this.
\begin{lstlisting}[caption={Folder Structure of the texmf folder},label={folder_struct}]
...
...
@@ -26,7 +27,7 @@ The structure of this folder should look like this.
\end{lstlisting}
On some \LaTeX{} systems, the directory look-up tables will need to be refreshed after making additions or deletions to the system files.
For TeXlive systems this is accomplished via executing \verb|texhash| as root.
MikTeX users can run\verb|initexmf -u| to accomplish the same thing.
MikTeX users can update it with \texttt{MiKTeX Console -> Tasks ->Refresh file name database} or in the console by running\verb|initexmf -u| to accomplish the same thing.
The \verb|templates/latex/uosdocs| folder contains the files to get you started.
The base file is \verb|Thesis.tex| for a thesis and \verb|Progress.tex| for a progress report.
...
...
@@ -66,16 +67,16 @@ not be in the table of contents.}\label{matter_arrangement}
\end{elencopar}
\end{figure}
It is advisable to write each chapter (and possibly section) in a separate file to
It is advisable to write each chapter (and possibly section) in a separate file to
keep each file of a manageable size.
They are included into the main file with an \verb|\include{Filename}| statement.
Also keep the Appendix and Listings files separate if possible.