-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblank.tex
64 lines (42 loc) · 1.35 KB
/
blank.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
%% preamble
% document template
\documentclass{bcrre_assignment}
% Document metadata
% fill these in to update header, footer and titlepage
\def\modulename{Module Name}
\def\assignmenttitle{Assignment Title}
\def\studentidnumber{Student ID Number}
\def\datesubmitted{Date Submitted}
% references
\addbibresource{references.bib}
%% document
\begin{document}
\pagenumbering{gobble}
\maketitle
\justifying %all text after title page is fully justified
\chapter*{Executive Summary}
\newpage
\tableofcontents
% stop all the tables / lists in this section being on seperate pages
\begingroup \let\clearpage\relax
\listoffigures
\listoftables
% manual glossary, an enthusiastic student could use a table or explore the {glossaries} package
\chapter*{Glossary / List of Abbreviations}
\endgroup
%start page numbering at the first chapter
\chapter{Introduction} \pagenumbering{arabic}
\parencite{elliott2014} %this is a placeholder citation to get the references section to show. Can be removed when work starts
\section{Aims \& Objectives}
\section{Scope}
\section{Methodology}
\chapter{Background / Background Research (\textit{Optional Chapter})}
\chapter{Case Studies (\textit{Optional Chapter})}
\chapter{Analysis}
\chapter{Conclusions}
\printbibliography
%% Add Appendicies
\appendix
\chapter{Appendix (Optional)}
\section{Appendix Section}
\end{document}