tdjames1 / Thesis-Template

A LaTeX thesis class template that follows the University of Sheffield guidelines

Home Page:http://ahills60.github.io/Thesis-Template/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Thesis Template

A LaTeX thesis template that was tweaked over a few years and condensed to a class file. A BibTeX bibliography class file is also provided.

Table of Contents

Instructions

On creating a new LaTeX document, start the document with \documentclass{thesis}. Options for the document are specified below. You should also define the macros \title{}, \author{}, \department{} and \university{} in the header of your document. The thesis class also provides an optional \dedication{} macro.

When writing the main body of your document, the macro \startpreamble can be called to generate the title page and switch page numbering to Roman numerals. You can then create sections with \section*{} for preamble content such as acknowledgements, abstracts and table of contents.

When declaring an end to the preamble, call the macro \stoppreamble to change page numbering back to Arabic numerals.

The thesis class imports the natbib package thus giving the option of paragraph citations (\citep{}) and text citations (\citet{}).

The class also provides shortcuts for declaring real numbers with \R{exponent_here}, expected values with \E{value}, Normal distributions with \N{mean}{variance} and probabilities with \p{value} or \p[value]{posterior}.

Optional document parameters

The \documentclass[options]{thesis} supports a number of options including the following:

  • 11pt for 11pt size text.
  • a4paper for A4 paper mode.
  • authoryear to use author-year citations rather than the numbering standard.
  • draftfigs to use placeholders for figures for faster compilation (with the draft argument for graphicx).
  • lineno to print line numbers throughout the document.
  • smallcaptions to use \small font size for captions declared with \caption{}.
  • twoside for double sided printing (this will adjust the margins accordingly).
  • texglossaries for using TeX-based construction of glossaries instead of makeindex.
  • unsrt to order bibliography by appearance in text.

Font support

The following fonts are supported and can be enabled using the corresponding documentclass option:

  • didot to use the GFS Didot serif font.
  • garamond to use the URW Garamond serif font (note that this is not installed by default and is now considered a non-free font).
  • helvetica to use the Helvetica sans serif font.
  • latinmodern to use the Latin Modern Sans sans serif font.
  • libertine to use the Linux Libertine serif font.
  • palatino to use the Palatino serif font.
  • sourcesanspro to use the Source Sans Pro sans serif font.
  • times to use the Times serif font.

Nomenclature support

Nomenclature is supported with the nomencl package (see CTAN). New nomenclature can be defined as follows:

\nomenclature{symbol}{description}

To compile the list of nomenclature, open up a terminal/command prompt session and run:

makeindex MyThesis.nlo -s nomencl.ist -o MyThesis.nls

If the thesis file is something other than MyThesis, then MyThesis should be replaced in the above with the name of the master thesis file.

Nomenclature will be displayed wherever the macro \printnomenclature is called. The width of the first column can be defined by including an optional width (e.g. \printnomenclature[2cm]). The nomenclature section contains the following preamble:

A list of the variables and notation used in this thesis is defined below. The definitions and conventions set here will be observed throughout unless otherwise stated.

Should acronyms be detected (by detecting the presence of filename.acr), then the preamble will be appended with:

For a list of acronyms, please consult page~\pageref{gl:acronym}

Acronym support

Acronyms are supported with the glossaries package (see CTAN). New acronyms can be defined as follows:

\newacronym{label}{acronym}{lower case, singular expansion of the acronym}

Within the document, the commands \gls{label}, \Gls{label}, \glspl{label} and \Glspl{label} can be used in place of abbreviated forms. These commands correspond with the lowercase singular, sentence case singular, lowercase plural and sentence case plural forms, respectively. LaTeX will automatically expand the acronym on the first instance and use the abbreviated form thereafter.

Using the macro \printgloss will create a new chapter and write appendix items after they have been compiled. This macro will call either the \printglossaries or \printnoidxglossaries macro, depending on whether the texglossaries document option has been declared (see Using TeX-based glossary construction).

To compile the list of acronyms, open up a terminal/command prompt session and run:

makeglossaries MyThesis

If the thesis file is something other than MyThesis, then MyThesis should be replaced in the above with the name of the master thesis file.

It may be desirable to override the default behaviour in which case, the following commands can be used.

Acronym form

  • \acrshort{label}: lowercase, singular acronym form.
  • \Acrshort{label}: sentence case, singular acronym form.
  • \acrshortpl{label}: lowercase, plural acronym form.
  • \Acrshortpl{label}: sentence case, plural acronym form.

Expanded form

  • \acrlong{label}: lowercase, singular expanded form.
  • \Acrlong{label}: sentence case, singular expanded form.
  • \acrlongpl{label}: lowercase, plural expanded form.
  • \Acrlongpl{label}: sentence case, plural expanded form.

Expanded and acronym form

  • \acrfull{label}: lowercase, singular expanded form proceeded by acronym in parentheses.
  • \Acrfull{label}: sentence case, singular expanded form proceeded by acronym in parentheses.
  • \acrfullpl{label}: lowercase, plural expanded form proceeded by acronym in parentheses.
  • \Acrfullpl{label}: sentence case, plural expanded form proceeded by acronym in parentheses.

Words are made plural by simply appending "s" to the end of an acronym or its expanded form. Some words do not conform to this generalisation and may require the long plural form to be redefined using:

\newacronym[longplural={lower case, plural expansion of the acronym}]{label}{acronym}{lower case, singular expansion of the acronym}

Note: \newacronym definitions need to be defined prior to usage. I recommend placing such definitions within a separate file (e.g. Acronyms.tex) and using \input{Acronyms} just before opening the document environment.

Using TeX-based glossary construction

The above acronym compilation instructions required the use of terminal/command prompt and calling the makeglossaries command. On some systems, this requirement is undesirable or impossible to execute. By declaring texglossaries within the document declaration options, the template will switch to using the TeX-based glossary compiler.

To create a new chapter and write appendix items after they have been compiled, simply call \printgloss as before.

Note: Calling makeglossaries is generally more efficient to use and provides options for languages other than English. I recommend that you use makeglossaries wherever possible.

Multi-page floats

Floats such as figures and algorithms can span multiple pages with the included caption package (for tables, I recommend using the longtable environment described below). When wanting to declare the continuation of an algorithm, simply call \ContinuedFloat after opening the environment. This should then be followed by the caption macro (which should automatically use the same counter as the previous float).

\begin{algorithm}[ht]
    \caption{\textbf{My algorithm.}}
    \label{alg:AlgorithmExample}
    \begin{description}
        \item [Step 1.] This is the first step.
        \item [Step 2.] This is the second step.
    \end{description}
\end{algorithm}

\begin{algorithm}[ht]
    \ContinuedFloat
    \caption{\textbf{My algorithm (continued).}}
    \begin{description}
        \item [Step 3.] This is the third step.
        \item [Step 4.] This is the fourth step.
    \end{description}
\end{algorithm}

Sub-captions

Sub-captions are supported via the subcaption package (see CTAN). To use sub-captions in a figure, declare a figure environment as normal and then use the subfigure environment to create subb figures:

\begin{figure}[ht]
    \centering
        \begin{subfigure}[b]{0.45\textwidth}
            \centering
            \includegraphics[scale=0.4]{Image1.png}
            \caption{Image 1 caption
            \label{fig:Image1Label}
        \end{subfigure}
        \quad
        \begin{subfigure}[b]{0.45\textwidth}
            \centering
            \includegraphics[scale=0.4]{Image2.png}
            \caption{Image 2 caption}
            \label{fig:Image2Label}
        \end{subfigure}
        \\
        \begin{subfigure}[b]{0.45\textwidth}
            \centering
            \includegraphics[scale=0.4]{Image3.png}
            \caption{Image 3 caption}
            \label{fig:Image3Label}
        \end{subfigure}
        \quad
        \begin{subfigure}[b]{0.45\textwidth}
            \centering
            \includegraphics[scale=0.4]{Image4.png}
            \caption{Image 4 caption}
            \label{fig:Image4Label}
        \end{subfigure}
    \caption{\textbf{Main figure caption.}}
    \label{fig:MainFigureLabel}
\end{figure}

Algorithms

The thesis class creates a new float for algorithms that can be called with:

\begin{algorithm}[ht]
  \caption{The caption to your algorithm}
  \label{alg:algorithm_label}
  % Content goes here
\end{algorithm}

A list of algorithms can generated using the \listofalgorithms macro. This can be used in the same way as \listoffigures and \listoftables.

The thesis class also uses the listings package which provides support for writing source code in any of the supported programming languages or a user-defined language (see CTAN).

Tables

Several packages have been added improving or enhancing the formatting of tables. These are described in the following subsections.

Tables spanning multiple pages

Tables spanning multiple pages are supported with the longtable package (see CTAN). Simply declare the environment and add any necessary table headers and footers:

\begin{longtable}{|p{5cm}|p{7.5cm}|}
    \caption{\textbf{Table caption.} This caption is displayed on the first page.}\label{tab:TableCaption}\\
    \hline
    \textbf{Column Header 1} & \textbf{Column Header 2}\\\hline
    \endfirsthead
    \caption[]{\textbf{Table caption (continued).} This caption is displayed on subsequent pages.}\\
    \hline
    \textbf{Column Header 1} & \textbf{Column Header 2}\\\hline
    \endhead
    \multicolumn{2}{r}{\emph{Continued on next page}}
    \endfoot
    \endlastfoot
    R1C1 & R1C2.\\ \hline
    R2C1 & R2C2.\\ \hline
\end{longtable}

Landscape tables

Landscape-oriented tables are supported using the rotating package (see CTAN). To rotate a table, encapsulate your caption, label and tabular environment within a sidewaystable environment:

\begin{sidewaystable}
    \caption{\textbf{Table caption.}}
    \label{tab:TableLabel}
    \centering
    \begin{tabular}{|r|r|r|r|r|r|r|}
        \hline
            & \textbf{Column 2} & \textbf{Column 3} & \textbf{Column 4} & \textbf{Column 5} & \textbf{Column 6} & \textbf{Column 7}\\ \hline
        \textbf{Row 1} & R1C2 & R1C3 & R1C4 & R1C5 & R1C6 & R1C7 \\ \hline
        \textbf{Row 2} & R2C2 & R2C3 & R2C4 & R2C5 & R2C6 & R2C7 \\ \hline
    \end{tabular}
\end{sidewaystable}

Table row colours

Rows of a table can be given a background colour using the \rowcolour[color]{intensity} command, provided by the color and colortbl packages (see CTAN for color and colortbl packages). Simply append the command at the end of a table row for the row's background to change. In the following example, the background of the row will be grey at 90% intensity:

$5.00$ & $-1.79$ \\ \hline \rowcolor[gray]{0.90}

Appendices

The thesis class provides support for multiple appendix items. Appendices will create new chapters that are labelled alphabetically and each appendix item will appear in the table of contents. To declare the start of the appendix section, use the macro \appendix. New chapters from this point will form different appendix items.

\chapter{Before the appendix}
Lorem ipsum dolor sit amet...

\appendix
\chapter{Appendix item 1} % Appears as "Appendix A"
Lorem ipsum dolor sit amet...

\chapter{Appendix item 2} % Appears as "Appendix B"
Lorem ipsum dolor sit amet...

\printglossaries % Appears as a new chapter called "Acronyms"

\bibliography{bibfile} % Appears as a new chapter called "Bibliography"

Bibliography

This class uses the natbib bibliography package and, specifically, the plainnaturl.bst bibliography stylesheet. The custom stylesheet displays initials and surname for all authors and removes URL and DOI information from bibliography entries. URL fields are preserved for miscellaneous/Internet bibliographic entries.

Note that the package prefers bibliographic information to be added as a separate bib file rather than appended to the bottom of a document.

Index

The class file also has support for creating index items via the makeidx package (see CTAN). To create append the index to the end of the document and include it within the Table of Contents, use:

\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{Index}
\printindex

About

A LaTeX thesis class template that follows the University of Sheffield guidelines

http://ahills60.github.io/Thesis-Template/

License:MIT License


Languages

Language:TeX 100.0%