LSHTM MSc Project Template
Forfatter
Robert Greener
Sidst opdateret
4 år siden
Licens
Other (as stated in the work)
Resumé
A template for a London School of Hygiene and Tropical Medicine MSc Project Report
A template for a London School of Hygiene and Tropical Medicine MSc Project Report
\documentclass{lshtm}
%%%% IF YOU GET ERRORS COMPILING MAKE SURE THE COMPILER IS XeLaTeX IN THE MENU OF OVERLEAF.
%%% The LSHTM Logo remains property of the London School of Hygiene and Tropical Medicine
% Everything else is CC0 licensed
% To the extent possible under law, Robert Greener has waived all copyright and related or neighboring rights to LSHTM MSc Project Template. This work is published from: United Kingdom.
% Here enter your details
\title{LSHTM MSc Project Template} % Put your project title here
\renewcommand{\candidateno}{111111} % Put your candidate number here
\renewcommand{\supervisor}{Prof. John Smith} % Put your supervisor here
\renewcommand{\degree}{Master of Science} % Degree title
\renewcommand{\subject}{Medical Statistics} % Degree subject
\renewcommand{\submissiondate}{September 2020} % Submission date
\renewcommand{\pagecount}{10}
% This is for the bibliography
\usepackage[
backend=biber,
style=numeric-comp,
sorting=none,
maxbibnames=3,
citetracker=true,
natbib=true
]{biblatex}
\addbibresource{bibliography.bib}
% This removes the url *unless* the entry is of type misc
\AtEveryBibitem{
\ifentrytype{misc}{}{\clearfield{url}}
}
\setmainfont[
Path=fonts/,
BoldFont=LiberationSans-Bold,
BoldItalicFont=LiberationSans-BoldItalic,
ItalicFont=LiberationSans-Italic
]{LiberationSans-Regular.ttf}
\setmonofont[
Path=fonts/,
BoldFont=LiberationMono-Bold,
BoldItalicFont=LiberationMono-BoldItalic,
ItalicFont=LiberationMono-Italic
]{LiberationMono-Regular.ttf}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% The document starts here
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\maketitle
% Front matter
\onehalfspacing
\pagenumbering{roman}
\include{FrontBackmatter/Abstract}
\include{FrontBackmatter/Acknowledgements}
\singlespacing
\include{FrontBackmatter/Contents}
% Main matter
\onehalfspacing
\pagenumbering{arabic}
\include{Chapters/Example} % Just comment this line out once you're comfortable
\include{Chapters/Introduction}
\include{Chapters/Background}
\include{Chapters/Methods}
\include{Chapters/Results}
\include{Chapters/Discussion}
% Back matter
\include{FrontBackmatter/Bibliography}
\appendix % This changes the numbering of chapters to A, B, C, ...
\include{Appendices/Appendix-A}
\end{document}