Advertisement
argui

university of bristol thesis template

Mar 18th, 2024
540
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 4.62 KB | None | 0 0
  1. \documentclass[
  2.   % ieee        % uncomment for IEEE bibliography style
  3. ]{uob-thesis}
  4.  
  5. \usepackage{lipsum}
  6.  
  7. \addbibresource{refs.bib}
  8.  
  9. %%%%%%%%%%%%%%%%%%%
  10. %% AUTHOR DETAILS %
  11. %%%%%%%%%%%%%%%%%%%
  12.  
  13.  
  14. \title{A Deep and Interesting Thesis}
  15. \subtitle{with applications to life}
  16. \author{Elon Turing}
  17.  
  18. \DTMsavedate{thesisdate}{2052-02-02}        % do not change name, will be re-used
  19. \date{\printdatewithoutmonth{thesisdate}}
  20.  
  21. % change as appropriate, e.g.
  22. %   Master of Science by advanced study in Computer Science (Conversion)
  23. %   Bachelor of Science in Computer Science
  24. %   Master of Engineering in Computer Science
  25. \degree{PhD~in~Computer~Science}
  26.  
  27. \school{School~of~Computer~Science}
  28. \faculty{Faculty~of~Engineering}
  29.  
  30. \wordcount{1234}
  31.  
  32. \begin{document}
  33.  
  34. %%% -------------------------------------------------------------
  35. %%% THESE TITLE PAGES ARE SPECIFIED BY THE REGULATIONS
  36. %%% DO NOT CHANGE ORDER
  37. %%%
  38. %%% comment out to remove any section
  39.  
  40. \maketitle
  41. \cleardoubleoddemptypage
  42.  
  43. \begin{abstract}
  44.  
  45.   % Abstract should be not more than 300 words, for either MSc or PhD.
  46.  
  47.   This section should pr\'{e}cis the project context, aims and objectives,
  48.  and main contributions (e.g. deliverables) and achievements; the same
  49.  section may be called an abstract elsewhere.  The goal is to ensure the
  50.  reader is clear about what the topic is, what you have done within this
  51.  topic, \emph{and} what your view of the outcome is.
  52.  
  53.  The former aspects should be guided by your specification: essentially
  54.  this section is a (very) short version of what is typically the first
  55.  chapter. If your project is experimental in nature, this should include
  56.  a clear research hypothesis.  This will obviously differ significantly
  57.  for each project, but an example might be as follows:
  58.  
  59.  \begin{quote}
  60.    My research hypothesis is that a suitable genetic algorithm will yield
  61.    more accurate results (when applied to the standard ACME data set) than
  62.    the algorithm proposed by Jones and Smith, while also executing in less
  63.    time.
  64.  \end{quote}
  65.  
  66.  The latter aspects could be presented as a concise, factual bullet point list.
  67.  Again the points will differ for each project, but might be as follows:
  68.  
  69.  \begin{quote}
  70.    \begin{itemize}
  71.    \item I spent $120$ hours collecting material on and learning about the Java
  72.      garbage-collection subsystem.
  73.    \item I wrote a total of $5000$ lines of source code, comprising a Linux
  74.      device driver for a robot (in C) and a GUI (in Java) that is used to
  75.      control it.
  76.    \item I designed a new algorithm for computing the non-linear mapping from
  77.      A-space to B-space using a genetic algorithm, see page $17$.
  78.    \item I implemented a version of the algorithm proposed by
  79.      \textcite{qian2021}, corrected a mistake in it, and compared the results
  80.      with several alternatives.
  81.    \end{itemize}
  82.  \end{quote}
  83. \end{abstract}
  84.  
  85. \begin{dedication}
  86.  To my darling mama,\\
  87.  sine-qua-non.
  88. \end{dedication}
  89.  
  90. \begin{acknowledgements}
  91. It is common practice (although totally optional) to acknowledge any third-party
  92. advice, contribution or influence you have found useful during your work.
  93. Examples include support from friends or family, the input of your Supervisor
  94. and/or Advisor, external organisations or persons who  have supplied resources
  95. of some kind (e.g., funding, advice or time), and so on.
  96. \end{acknowledgements}
  97.  
  98. \begin{declaration}
  99.  I declare that the work in this dissertation was carried out in accordance
  100.  with the requirements of the University's Regulations and Code of Practice for
  101.  Taught Programmes/Research Degree Programmes {\color{red} (delete as
  102.  appropriate)} and that it has not been submitted for any other academic award.
  103.  Except where indicated by specific reference in the text, the work is the
  104.  candidate's own work. Work done in collaboration with, or with the assistance
  105.  of, others, is indicated as such. Any views expressed in the
  106.  dissertation are those of the author.
  107.  
  108.  \vspace{2cm}
  109.  
  110.  \includegraphics[width=4cm]{sig}
  111. \end{declaration}
  112.  
  113. %%%
  114. %%% TITLE PAGES END HERE
  115. %%% -----------------------------------------------------
  116.  
  117.  
  118. %%%
  119. %% FRONT MATTER
  120. %%%
  121.  
  122. \frontmatter
  123.  
  124. %% THESE MUST BE IN THIS ORDER ACCORDING TO REGULATIONS
  125. \tableofcontents
  126. \listoftables
  127. \listoffigures
  128.  
  129.  
  130. %%%%%%%%%%%%%%%%
  131. %% MAIN MATTER %
  132. %%%%%%%%%%%%%%%%
  133.  
  134. \mainmatter
  135.  
  136. \chapter{Introduction}
  137.  
  138.  \input{1_intro}
  139.  
  140. \chapter{Methodology}
  141.  
  142.  \input{2_methodology}
  143.  
  144.  
  145. %%%%%%%%%%%%%%%%
  146. %% BACK MATTER %
  147. %%%%%%%%%%%%%%%%
  148.  
  149. \backmatter
  150.  
  151. \chapter*{Bibliography}
  152.  
  153. \printbibliography[heading=none]
  154.  
  155. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement