personalisation

This commit is contained in:
Jake Hillion 2020-11-06 18:38:12 +00:00
parent c7c697bd43
commit 0c295bbf6c
14 changed files with 389 additions and 33 deletions

View File

@ -3,7 +3,7 @@
%*********************************** First Chapter ***************************** %*********************************** First Chapter *****************************
%******************************************************************************* %*******************************************************************************
\chapter{Getting started} %Title of the First Chapter \chapter{Introduction} %Title of the First Chapter
\ifpdf \ifpdf
\graphicspath{{Chapter1/Figs/Raster/}{Chapter1/Figs/PDF/}{Chapter1/Figs/}} \graphicspath{{Chapter1/Figs/Raster/}{Chapter1/Figs/PDF/}{Chapter1/Figs/}}
@ -97,4 +97,4 @@ Time}
\nomenclature[z-USL]{USL}{Update Stress Last} \nomenclature[z-USL]{USL}{Update Stress Last}
\nomenclature[s-crit]{crit}{Critical state} \nomenclature[s-crit]{crit}{Critical state}
\nomenclature[z-DKT]{DKT}{Draft Kiss Tumble} \nomenclature[z-DKT]{DKT}{Draft Kiss Tumble}
\nomenclature[z-PPC]{PPC}{Particles per cell} \nomenclature[z-PPC]{PPC}{Particles per cell}

View File

@ -3,7 +3,7 @@
%****************************** Second Chapter ********************************* %****************************** Second Chapter *********************************
%******************************************************************************* %*******************************************************************************
\chapter{My second chapter} \chapter{Preparation}
\ifpdf \ifpdf
\graphicspath{{Chapter2/Figs/Raster/}{Chapter2/Figs/PDF/}{Chapter2/Figs/}} \graphicspath{{Chapter2/Figs/Raster/}{Chapter2/Figs/PDF/}{Chapter2/Figs/}}

View File

@ -2,7 +2,7 @@
%******************************************************************************* %*******************************************************************************
%****************************** Third Chapter ********************************** %****************************** Third Chapter **********************************
%******************************************************************************* %*******************************************************************************
\chapter{My third chapter} \chapter{Implementation}
% **************************** Define Graphics Path ************************** % **************************** Define Graphics Path **************************
\ifpdf \ifpdf

156
Chapter4/chapter4.tex Normal file
View File

@ -0,0 +1,156 @@
%!TEX root = ../thesis.tex
%*******************************************************************************
%****************************** Third Chapter **********************************
%*******************************************************************************
\chapter{Evaluation}
% **************************** Define Graphics Path **************************
\ifpdf
\graphicspath{{Chapter3/Figs/Raster/}{Chapter3/Figs/PDF/}{Chapter3/Figs/}}
\else
\graphicspath{{Chapter3/Figs/Vector/}{Chapter3/Figs/}}
\fi
\section{First section of the third chapter}
And now I begin my third chapter here \dots
And now to cite some more people~\citet{Rea85,Ancey1996}
\subsection{First subsection in the first section}
\dots and some more
\subsection{Second subsection in the first section}
\dots and some more \dots
\subsubsection{First subsub section in the second subsection}
\dots and some more in the first subsub section otherwise it all looks the same
doesn't it? well we can add some text to it \dots
\subsection{Third subsection in the first section}
\dots and some more \dots
\subsubsection{First subsub section in the third subsection}
\dots and some more in the first subsub section otherwise it all looks the same
doesn't it? well we can add some text to it and some more and some more and
some more and some more and some more and some more and some more \dots
\subsubsection{Second subsub section in the third subsection}
\dots and some more in the first subsub section otherwise it all looks the same
doesn't it? well we can add some text to it \dots
\section{Second section of the third chapter}
and here I write more \dots
\section{The layout of formal tables}
This section has been modified from ``Publication quality tables in \LaTeX*''
by Simon Fear.
The layout of a table has been established over centuries of experience and
should only be altered in extraordinary circumstances.
When formatting a table, remember two simple guidelines at all times:
\begin{enumerate}
\item Never, ever use vertical rules (lines).
\item Never use double rules.
\end{enumerate}
These guidelines may seem extreme but I have
never found a good argument in favour of breaking them. For
example, if you feel that the information in the left half of
a table is so different from that on the right that it needs
to be separated by a vertical line, then you should use two
tables instead. Not everyone follows the second guideline:
There are three further guidelines worth mentioning here as they
are generally not known outside the circle of professional
typesetters and subeditors:
\begin{enumerate}\setcounter{enumi}{2}
\item Put the units in the column heading (not in the body of
the table).
\item Always precede a decimal point by a digit; thus 0.1
{\em not} just .1.
\item Do not use `ditto' signs or any other such convention to
repeat a previous value. In many circumstances a blank
will serve just as well. If it won't, then repeat the value.
\end{enumerate}
A frequently seen mistake is to use `\textbackslash begin\{center\}' \dots `\textbackslash end\{center\}' inside a figure or table environment. This center environment can cause additional vertical space. If you want to avoid that just use `\textbackslash centering'
\begin{table}
\caption{A badly formatted table}
\centering
\label{table:bad_table}
\begin{tabular}{|l|c|c|c|c|}
\hline
& \multicolumn{2}{c}{Species I} & \multicolumn{2}{c|}{Species II} \\
\hline
Dental measurement & mean & SD & mean & SD \\ \hline
\hline
I1MD & 6.23 & 0.91 & 5.2 & 0.7 \\
\hline
I1LL & 7.48 & 0.56 & 8.7 & 0.71 \\
\hline
I2MD & 3.99 & 0.63 & 4.22 & 0.54 \\
\hline
I2LL & 6.81 & 0.02 & 6.66 & 0.01 \\
\hline
CMD & 13.47 & 0.09 & 10.55 & 0.05 \\
\hline
CBL & 11.88 & 0.05 & 13.11 & 0.04\\
\hline
\end{tabular}
\end{table}
\begin{table}
\caption{A nice looking table}
\centering
\label{table:nice_table}
\begin{tabular}{l c c c c}
\hline
\multirow{2}{*}{Dental measurement} & \multicolumn{2}{c}{Species I} & \multicolumn{2}{c}{Species II} \\
\cline{2-5}
& mean & SD & mean & SD \\
\hline
I1MD & 6.23 & 0.91 & 5.2 & 0.7 \\
I1LL & 7.48 & 0.56 & 8.7 & 0.71 \\
I2MD & 3.99 & 0.63 & 4.22 & 0.54 \\
I2LL & 6.81 & 0.02 & 6.66 & 0.01 \\
CMD & 13.47 & 0.09 & 10.55 & 0.05 \\
CBL & 11.88 & 0.05 & 13.11 & 0.04\\
\hline
\end{tabular}
\end{table}
\begin{table}
\caption{Even better looking table using booktabs}
\centering
\label{table:good_table}
\begin{tabular}{l c c c c}
\toprule
\multirow{2}{*}{Dental measurement} & \multicolumn{2}{c}{Species I} & \multicolumn{2}{c}{Species II} \\
\cmidrule{2-5}
& mean & SD & mean & SD \\
\midrule
I1MD & 6.23 & 0.91 & 5.2 & 0.7 \\
I1LL & 7.48 & 0.56 & 8.7 & 0.71 \\
I2MD & 3.99 & 0.63 & 4.22 & 0.54 \\
I2LL & 6.81 & 0.02 & 6.66 & 0.01 \\
CMD & 13.47 & 0.09 & 10.55 & 0.05 \\
CBL & 11.88 & 0.05 & 13.11 & 0.04\\
\bottomrule
\end{tabular}
\end{table}

156
Chapter5/chapter5.tex Normal file
View File

@ -0,0 +1,156 @@
%!TEX root = ../thesis.tex
%*******************************************************************************
%****************************** Third Chapter **********************************
%*******************************************************************************
\chapter{Conclusions}
% **************************** Define Graphics Path **************************
\ifpdf
\graphicspath{{Chapter3/Figs/Raster/}{Chapter3/Figs/PDF/}{Chapter3/Figs/}}
\else
\graphicspath{{Chapter3/Figs/Vector/}{Chapter3/Figs/}}
\fi
\section{First section of the third chapter}
And now I begin my third chapter here \dots
And now to cite some more people~\citet{Rea85,Ancey1996}
\subsection{First subsection in the first section}
\dots and some more
\subsection{Second subsection in the first section}
\dots and some more \dots
\subsubsection{First subsub section in the second subsection}
\dots and some more in the first subsub section otherwise it all looks the same
doesn't it? well we can add some text to it \dots
\subsection{Third subsection in the first section}
\dots and some more \dots
\subsubsection{First subsub section in the third subsection}
\dots and some more in the first subsub section otherwise it all looks the same
doesn't it? well we can add some text to it and some more and some more and
some more and some more and some more and some more and some more \dots
\subsubsection{Second subsub section in the third subsection}
\dots and some more in the first subsub section otherwise it all looks the same
doesn't it? well we can add some text to it \dots
\section{Second section of the third chapter}
and here I write more \dots
\section{The layout of formal tables}
This section has been modified from ``Publication quality tables in \LaTeX*''
by Simon Fear.
The layout of a table has been established over centuries of experience and
should only be altered in extraordinary circumstances.
When formatting a table, remember two simple guidelines at all times:
\begin{enumerate}
\item Never, ever use vertical rules (lines).
\item Never use double rules.
\end{enumerate}
These guidelines may seem extreme but I have
never found a good argument in favour of breaking them. For
example, if you feel that the information in the left half of
a table is so different from that on the right that it needs
to be separated by a vertical line, then you should use two
tables instead. Not everyone follows the second guideline:
There are three further guidelines worth mentioning here as they
are generally not known outside the circle of professional
typesetters and subeditors:
\begin{enumerate}\setcounter{enumi}{2}
\item Put the units in the column heading (not in the body of
the table).
\item Always precede a decimal point by a digit; thus 0.1
{\em not} just .1.
\item Do not use `ditto' signs or any other such convention to
repeat a previous value. In many circumstances a blank
will serve just as well. If it won't, then repeat the value.
\end{enumerate}
A frequently seen mistake is to use `\textbackslash begin\{center\}' \dots `\textbackslash end\{center\}' inside a figure or table environment. This center environment can cause additional vertical space. If you want to avoid that just use `\textbackslash centering'
\begin{table}
\caption{A badly formatted table}
\centering
\label{table:bad_table}
\begin{tabular}{|l|c|c|c|c|}
\hline
& \multicolumn{2}{c}{Species I} & \multicolumn{2}{c|}{Species II} \\
\hline
Dental measurement & mean & SD & mean & SD \\ \hline
\hline
I1MD & 6.23 & 0.91 & 5.2 & 0.7 \\
\hline
I1LL & 7.48 & 0.56 & 8.7 & 0.71 \\
\hline
I2MD & 3.99 & 0.63 & 4.22 & 0.54 \\
\hline
I2LL & 6.81 & 0.02 & 6.66 & 0.01 \\
\hline
CMD & 13.47 & 0.09 & 10.55 & 0.05 \\
\hline
CBL & 11.88 & 0.05 & 13.11 & 0.04\\
\hline
\end{tabular}
\end{table}
\begin{table}
\caption{A nice looking table}
\centering
\label{table:nice_table}
\begin{tabular}{l c c c c}
\hline
\multirow{2}{*}{Dental measurement} & \multicolumn{2}{c}{Species I} & \multicolumn{2}{c}{Species II} \\
\cline{2-5}
& mean & SD & mean & SD \\
\hline
I1MD & 6.23 & 0.91 & 5.2 & 0.7 \\
I1LL & 7.48 & 0.56 & 8.7 & 0.71 \\
I2MD & 3.99 & 0.63 & 4.22 & 0.54 \\
I2LL & 6.81 & 0.02 & 6.66 & 0.01 \\
CMD & 13.47 & 0.09 & 10.55 & 0.05 \\
CBL & 11.88 & 0.05 & 13.11 & 0.04\\
\hline
\end{tabular}
\end{table}
\begin{table}
\caption{Even better looking table using booktabs}
\centering
\label{table:good_table}
\begin{tabular}{l c c c c}
\toprule
\multirow{2}{*}{Dental measurement} & \multicolumn{2}{c}{Species I} & \multicolumn{2}{c}{Species II} \\
\cmidrule{2-5}
& mean & SD & mean & SD \\
\midrule
I1MD & 6.23 & 0.91 & 5.2 & 0.7 \\
I1LL & 7.48 & 0.56 & 8.7 & 0.71 \\
I2MD & 3.99 & 0.63 & 4.22 & 0.54 \\
I2LL & 6.81 & 0.02 & 6.66 & 0.01 \\
CMD & 13.47 & 0.09 & 10.55 & 0.05 \\
CBL & 11.88 & 0.05 & 13.11 & 0.04\\
\bottomrule
\end{tabular}
\end{table}

View File

@ -2,16 +2,14 @@
\begin{declaration} \begin{declaration}
I hereby declare that except where specific reference is made to the work of I, Jake Hillion of Queens' College, being a candidate for Part II of the Computer Science
others, the contents of this dissertation are original and have not been Tripos, hereby declare that this dissertation and the work described in it are my own work,
submitted in whole or in part for consideration for any other degree or unaided except as may be specified below, and that the dissertation does not
qualification in this, or any other university. This dissertation is my own contain material that has already been used to any substantial extent for a
work and contains nothing which is the outcome of work done in collaboration comparable purpose. I am content for my dissertation to be made available to the
with others, except as specified in the text and Acknowledgements. This students and staff of the University.
dissertation contains fewer than 65,000 words including appendices,
bibliography, footnotes, tables and equations and has fewer than 150 figures.
% Author and date will be inserted automatically from thesis.tex \author \degreedate \vspace{25mm}
\end{declaration} \end{declaration}

View File

@ -1016,8 +1016,7 @@ wish to left align your text}
\chapter*{\centering \Large \@declarationtitle} \chapter*{\centering \Large \@declarationtitle}
\thispagestyle{empty} \thispagestyle{empty}
}{ }{
\flushright \noindent\@author{}\\
\@author{}\\
\@degreedate{} \@degreedate{}
\vfill \vfill
} }
@ -1037,6 +1036,31 @@ wish to left align your text}
% ********************************** Proforma ***********************************
% The acknowledgements environment puts a large, bold, centered
% "Proforma" label at the top of the page.
\newenvironment{proforma}{
\cleardoublepage
\setsinglecolumn
\chapter*{\centering \Large Proforma}
\thispagestyle{empty}
}
% ********************************** Proposal ***********************************
% The acknowledgements environment puts a large, bold, centered
% "Proposal" label at the top of the page.
\newenvironment{proposal}{
\cleardoublepage
\setsinglecolumn
\chapter*{\centering \Large Project Proposal}
\thispagestyle{empty}
}
% ******************************* Nomenclature ********************************* % ******************************* Nomenclature *********************************
\RequirePackage[intoc]{nomencl} \RequirePackage[intoc]{nomencl}
\makenomenclature \makenomenclature

View File

@ -73,6 +73,8 @@
% This is for people stuck with older versions of texlive % This is for people stuck with older versions of texlive
%\usepackage{sty/caption/subcaption} %\usepackage{sty/caption/subcaption}
\usepackage{subcaption} \usepackage{subcaption}
\usepackage{pdfpages}
\usepackage{graphicx}
% ********************************** Tables ************************************ % ********************************** Tables ************************************
\usepackage{booktabs} % For professional looking tables \usepackage{booktabs} % For professional looking tables
@ -123,7 +125,7 @@
\fi \fi
% changes the default name `Bibliography` -> `References' % changes the default name `Bibliography` -> `References'
\renewcommand{\bibname}{References} %\renewcommand{\bibname}{References}
% ****************************************************************************** % ******************************************************************************

9
Proforma/proforma.tex Normal file
View File

@ -0,0 +1,9 @@
% ************************** Thesis Proforma **************************
\begin{proforma}
Stuff to be filled in later.
\end{proforma}

Binary file not shown.

6
Proposal/proposal.tex Normal file
View File

@ -0,0 +1,6 @@
% ************************** Proposal **************************
\begin{proposal}
\includepdf[pages=-]{Proposal/project-proposal.pdf}
\end{proposal}

View File

@ -1,30 +1,30 @@
% ************************ Thesis Information & Meta-data ********************** % ************************ Thesis Information & Meta-data **********************
%% The title of the thesis %% The title of the thesis
\title{Writing your PhD thesis in \texorpdfstring{\\ \LaTeX2e}{LaTeX2e}} \title{A Multi-Path Bidirectional Layer 3 Proxy}
%\texorpdfstring is used for PDF metadata. Usage: %\texorpdfstring is used for PDF metadata. Usage:
%\texorpdfstring{LaTeX_Version}{PDF Version (non-latex)} eg., %\texorpdfstring{LaTeX_Version}{PDF Version (non-latex)} eg.,
%\texorpdfstring{$sigma$}{sigma} %\texorpdfstring{$sigma$}{sigma}
%% Subtitle (Optional) %% Subtitle (Optional)
\subtitle{Using the CUED template} %\subtitle{Using the CUED template}
%% The full name of the author %% The full name of the author
\author{Krishna Kumar} \author{Jake Hillion}
%% Department (eg. Department of Engineering, Maths, Physics) %% Department (eg. Department of Engineering, Maths, Physics)
\dept{Department of Engineering} \dept{Department of Computer Science}
%% University and Crest %% University and Crest
\university{University of Cambridge} \university{University of Cambridge}
% Crest minimum should be 30mm. % Crest minimum should be 30mm.
\crest{\includegraphics[width=0.2\textwidth]{University_Crest}} %\crest{\includegraphics[width=0.2\textwidth]{University_Crest}}
%% Use this crest, if you are using the college crest %% Use this crest, if you are using the college crest
%% Crest long miminum should be 65mm %% Crest long miminum should be 65mm
%\crest{\includegraphics[width=0.45\textwidth]{University_Crest_Long}} \crest{\includegraphics[width=0.45\textwidth]{University_Crest_Long}}
%% College shield [optional] %% College shield [optional]
% Crest minimum should be 30mm. % Crest minimum should be 30mm.
%\collegeshield{\includegraphics[width=0.2\textwidth]{CollegeShields/Kings}} \collegeshield{\includegraphics[width=0.2\textwidth]{CollegeShields/Queens}}
%% Supervisor (optional) %% Supervisor (optional)
@ -32,13 +32,15 @@
%\supervisor{Prof. A.B. Supervisor\newline %\supervisor{Prof. A.B. Supervisor\newline
%Prof. C.D. Supervisor} %Prof. C.D. Supervisor}
%\supervisor{Mike Dodson}
%% Supervisor Role (optional) - Supervisor (default) or advisor %% Supervisor Role (optional) - Supervisor (default) or advisor
% \supervisorrole{\textbf{Supervisors: }} % \supervisorrole{\textbf{Supervisors: }}
%% if no title is desired: %% if no title is desired:
% \supervisorrole{} % \supervisorrole{}
%% Supervisor line width: required to align supervisors %% Supervisor line width: required to align supervisors
%\supervisorlinewidth{0.35\textwidth} %\supervisorlinewidth{0.20\textwidth}
%% Advisor (optional) %% Advisor (optional)
%% for multiple advisors, append each advisor with the \newline command %% for multiple advisors, append each advisor with the \newline command
@ -60,15 +62,14 @@
%\renewcommand{\submissiontext}{change the default text here if needed} %\renewcommand{\submissiontext}{change the default text here if needed}
%% Full title of the Degree %% Full title of the Degree
\degreetitle{Doctor of Philosophy} \degreetitle{Bachelor of Arts}
%% College affiliation (optional) %% College affiliation (optional)
\college{King's College} \college{Queens' College}
%% Submission date %% Submission date
% Default is set as {\monthname[\the\month]\space\the\year} % Default is set as {\monthname[\the\month]\space\the\year}
%\degreedate{September 2014} %\degreedate{September 2014}
%% Meta information %% Meta information
\subject{LaTeX} \keywords{{LaTeX} {PhD Thesis} {Engineering} {University of \subject{LaTeX} \keywords{{LaTeX} {Part II Dissertation} {Computer Science} {University of Cambridge}}
Cambridge}}

Binary file not shown.

View File

@ -113,10 +113,11 @@
\maketitle \maketitle
\include{Dedication/dedication} %\include{Dedication/dedication}
\include{Declaration/declaration} \include{Declaration/declaration}
\include{Acknowledgement/acknowledgement} \include{Proforma/proforma}
\include{Abstract/abstract} %\include{Acknowledgement/acknowledgement}
%\include{Abstract/abstract}
% *********************** Adding TOC and List of Figures *********************** % *********************** Adding TOC and List of Figures ***********************
@ -137,8 +138,8 @@
\include{Chapter1/chapter1} \include{Chapter1/chapter1}
\include{Chapter2/chapter2} \include{Chapter2/chapter2}
\include{Chapter3/chapter3} \include{Chapter3/chapter3}
%\include{Chapter4/chapter4} \include{Chapter4/chapter4}
%\include{Chapter5/chapter5} \include{Chapter5/chapter5}
%\include{Chapter6/chapter6} %\include{Chapter6/chapter6}
%\include{Chapter7/chapter7} %\include{Chapter7/chapter7}
@ -184,4 +185,7 @@
% *************************************** Index ******************************** % *************************************** Index ********************************
\printthesisindex % If index is present \printthesisindex % If index is present
% ************************************** Proposal ******************************
\include{Proposal/proposal}
\end{document} \end{document}