Skip to content

This is a latex template created to comply with Northumbria University's guidelines for writing Ph.D. thesis.

Notifications You must be signed in to change notification settings

zongyan/nu_thesis_template

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What is this File

This project is to make it easier to start creating a Ph.D. thesis for Northumbria University. The university has verbose guidelines on how a Ph.D. document should be setup. This project is created so that you can quickly and easily start a thesis in LaTeX.

The Northumbria guidelines for Ph.D. thesis creation are located here

Instructions

The project is split into various directories for organisation.

The FrontMatter folder has all the sections that procede the Main Matter.

The MainMatter folder contains a Chapters Directory and a chapters.tex file

The structure included in this example is as follows:

  • Chapters
    • ResearchDesign
      • Sections
        • ResearchPosition.tex
        • ...
        • ...
      • ResearchDesign.tex
    • Introduction.tex

This makes organisation of sections and chapters smoother. The main.tex file will have a single link to chapters.tex and chapters.tex will link to each chapter, which in turn will link to each section.

For complicated chapters (mutliple sub sections), use the directory structure above (or one you feel more comfortable with). For simple chapters (one or two sections) it may be worth just creating a single .tex file.

Required Files

This project uses the following required files:

  • Harvard.bst (This is the bibliography style file same as AGSM, but formats URLS correctly and supresses URLs on all but Misc (webpages) items.)
  • Library.bib (This is bib file used to generate bibliography)
  • NorthumbriaPhDThesis.cls (This file provides all the overrides to the Book.cls file that makes the project comply with Northumbria's style guide)

Images

The Images Directory is defined inside of the document class file so it's name cannot be changed. This is an example of how to reference ResearchOnion.png from the images folder:

\begin{figure}[ht]
    \centering
    \includegraphics[width=0.8\textwidth]{ResearchOnion}
    \caption{The Research Onion}
    \label{fig:research-onion}
\end{figure}

Arguments

Double Sided Printing

Northumbria Supports double sided book layouts (if paper is sufficiently opaque). To include double sided printing create the document class like this (this is default)

\documentclass[twoside,openright]{RequiredFiles/NorthumbriaPhdThesis}

To create a one sided print create the class declaration without any declaration of sides:

\documentclass{RequiredFiles/NorthumbriaPhdThesis}

Uncited Bibliography

Adding a full bibliography (uncited and cited) is optional for Northumbria Theses. To include them in your thesis declare your class with the uncited flag as follows (works with oneside also):

\documentclass[twoside, openright, uncited]{RequiredFiles/NorthumbriaPhdThesis}

Then at the end of your document (before the index is printed) add the following code:

\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyleother{RequiredFiles/Harvard} 
\bibliographyother{RequiredFiles/Library}

This uses the multibib package which is required and defined in NorthumbriaPhdThesis.cls to make this work it creates a second bibliography flag class {other} and includes the line \nociteother{*} to reference all bib items in the 'other' bibliography.

Font12

The default font size is 11pt. If you would like to use a larger font use the flag fontlg when declaring the document class like so:

\documentclass[twoside, openright, fontlg]{RequiredFiles/NorthumbriaPhdThesis}

Time New Roman or Arial

The default font is the times new roman. In the document class, please use the following code:

\RequirePackage{times}

If you want to use the arial font, please use the following code in the class document. In addition, these only work in the XeLaTex engine.

\RequirePackage{fontspec}
\setmainfont[BoldFont={Arial Bold}, ItalicFont={Arial Italic}]{Arial}

About

This is a latex template created to comply with Northumbria University's guidelines for writing Ph.D. thesis.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TeX 100.0%