a LaTeX thesis template for Cambridge PhD students
-
Clone this repository.
-
Start adding contents of your thesis into
thesis.tex
. -
Build the
PDF
by running the following in the command line:make
-
Open
thesis.pdf
.
Pro tip: you can use one of the samples in the Samples
directory.
Your thesis document will look something like this:
If you use the clean sample, which can be found in ./Samples/clean
, it will look like this:
The template also supports DVI and PS formats. All three formats can be generated
with the provided Makefile
.
To build the PDF
version of your thesis, run:
make
This build procedure uses pdflatex
and will produce thesis.pdf
.
To produce DVI
and PS
versions of your document, you should run:
make thesis.ps
This will use the latex
and dvips
commands to build the document
and will produce thesis.dvi
and thesis.ps
documents.
To clean unwanted clutter (all LaTeX auto-generated files), run:
make clean
cam-thesis
supports all the options of the standard report
class (on which
it is based).
It also supports some custom options.
-
techreport
: formats the document as a technical report (here's a sample). Here is a list of formatting points in which the technical report differs from a normal thesis (see guidelines for more information):- different margins (left and right margins are 25mm, top and bottom margins are 20mm),
- normal line spacing (instead of one-half spacing),
- no custom title page,
- no declaration,
- page count starts with 3,
- if the
hyperref
package is used, the optionpdfpagelabels=false
will be passed to it.
-
firstyr
: formats the document as a first-year report (here's a sample). This option removes some unneeded elements and modifies the submission note. Here is a list of formatting points in which the first year report differs from a normal thesis:- an appropraite subtitle is added,
- the submission note is changed appropriately,
- no standalone abstract,
- no declaration,
- no acknowledgements.
-
secondyr
: formats the document as a second-year report (here's a sample). Similarly tofirstyr
, this style modifies the submission note and removes unneeded elements. Specially, an abstract is retained (as for this report, research is often in a more "stable" state). Here is a list of formatting points in which the second year report differs from a normal thesis:- an appropraite subtitle is added,
- the submission note is changed appropriately,
- no declaration,
- no acknowledgements.
-
times
: tells the class to use the times font. -
glossary
: puts the glossary after the TOC. The glossary contains a list of abbreviations, their explanations etc. Describe your abbreviations and add them to the glossary immediately after you introduce them in the body of your thesis. You can use the following command for this:\newglossaryentry{computer} { name=computer, description={is a programmable machine that receives input, stores and manipulates data, and provides output in a useful format} }
After that, you can reference particular glossary entries like this:
\gls{computer}
You can also change the glossary style. For example, try putting this on the very top of the preamble (even before you define the document class with
\documentclass[glossary]{cam-thesis}
):\PassOptionsToPackage{style=altlong4colheader}{glossaries}
Further instructions can be found on LaTeX Wikibooks or the user manual at CTAN.
Note:
glossaries
is the package used to create the glossary. -
withindex
: build the index, which you can put at the and of the thesis with the following command (it will create a new unnumbered chapter):\printthesisindex
Instructions on how to use the index can be found here.
Note: the package
makeidx
is used to create the index. -
backrefs
: Add back references in the References section (here's a sample). In other words, for each reference, it adds the page(s) where it is cited.Note: the package
backref
is used to create the back references.
You can report issues through our GitHub repository.
You can also mail the maintainers directly.
The University of Cambridge submission guidelines:
The University of Cambridge final submission guidelines:
The Computer Laboratory guidelines:
The Computer Laboratory guidelines for technical reports:
By all means. Previously we used the horrendously complex Makefile
at
Put the files and folders listed below into a directory where LaTeX can find them (for more info see [1]):
cam-thesis.cls
CollegeShields/
[1] You can put these files either into the standard LaTeX directory for classes [2], or a directory listed in your
TEXINPUTS
environment variable.[2] The location of the standard LaTeX class directory depends on which LaTeX installation and operating system you use. For example, for TeX Live on Fedora 14 it is
/usr/share/texmf/tex/latex/base
.In any case, after this, LaTeX will still not be able find your class. You will have to rebuild the package index. This procedure also depends on your installation specifics, but for TeX Live you have to run the
texhash
command.For more comprehensive information refer to LaTeX Wikibooks.
The university updates its logo every now and then. You can find up-to-date logos on this page (subject to change without notice).
Download and exchange the new logos with CUni.eps
and/or CUni.pdf
.
If you find a distributable vector-based image of your college's shield you can report it as an issue or mail it to contributors directly (refer to question Q1 above).
The Computer Laboratory provides some.
After you've installed the fonts, add somewhere in the preamble (before \begin{document}
) the following command:
\renewcommand\rmdefault{psb}
There is a page on the Computer Lab's web site. They recommend using this command:
ps2ascii thesis.pdf | wc -w
In thesis.tex
use \collegeshield{CollegeShields/<college>}
with <college>
as your your desired college name, as found in CollegeShields
.
Alternatively, \collegeshield{CollegeShields/CUniNoText}
can be used to display the University of Cambridge shield design.