Latex for Research Thesis
The directory, where you can find the Latex format of the UCL PhD thesis can be found here: /opt/tex/lib/texmf/tex/ucl
The particular files relevant are: ucl_thesis.cls and the manual 'ucl_macros_user_manual.ltx' which recommends using two other files 'rnmdt.bst' and 'rnmdt.sty'. However some students have not been able to get the last two files working. The first two files are attached here.
UCL Thesis
The 'ucl_thesis.cls' file, has been changed slightly so the original will have to be obtained from the directory pasted above.
Following is a version of the template that one of our PhD students, Vinoba Vinayagamoorthy, has been using for her thesis.
\documentclass[phd]{ucl_thesis}
%twoside for double page printing
\usepackage{graphics}
\usepackage{graphicx}
\title{Yet to be decided thesis}
\author{Vinoba Vinayagamoorthy}
%\renewcommand{\baselinestretch}{1.5}
%\renewcommand{\bibname}{References}
\bibliographystyle{alpha}
\begin{document}
\maketitle
\clearpage
\begin{center}
\textbf{To whomever}
\end{center}
\begin{abstract}
If I knew my thesis, I would know my abstract and guess what? It
would be HERE.
\end{abstract}
\begin{acknowledgements}
Words comprising the acknowledgements.
\end{acknowledgements}
\setcounter{tocdepth}{2}
\tableofcontents
\listoffigures
\listoftables
%\cleardoublepage
\chapter{Introduction}
\label{intro}
\input{Intro}
\chapter{Literature Review}
\label{background}
\input{background}
\input{affective}
\chapter{Methodology}
\label{method}
\input{method}
\chapter{Title of chapter 4}
\label{label to chapter 4}
\input{file containing chapter 4}
\chapter{Title of chapter 5}
\label{label to chapter 5}
\input{file containing chapter 5}
\chapter{Title of chapter 6}
\label{label to chapter 6}
\input{file containing chapter 6}
\chapter{Conclusion}
\label{conclusion}
\input{conclusion}
\addcontentsline{toc}{chapter}{Appendices}
%\chapter{Appendices}
\appendix
\input{appendix}
\addcontentsline{toc}{chapter}{Bibliography}
\bibliography{PhD}
\end{document}












