-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThesis_Main.tex
88 lines (75 loc) · 3.71 KB
/
Thesis_Main.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
\documentclass[12pt]{report} % Times New Roman, 12pt
% \usepackage{gscale_thesis_singlespace} % Single spaced thesis
\usepackage{gscale_thesis_doublespace} % Double spaced thesis
\usepackage{fancyheadings} % Header and footer styling
\usepackage{natbib} % Bibliography formatting
\usepackage{setspace} % Allows double spacing but skips headers/footers
\include{definitions} % LaTeX variables for preface pages/headers
\setcounter{tocdepth}{1} % Limits the TOC to chapter and section names
% Additional packages
\usepackage{graphicx} % Allows the inclusion of figures
\usepackage{subcaption} % Allows captions to be added to subfigures
\usepackage[justification=centering]{caption} % Centres caption text
\usepackage[hidelinks]{hyperref} % Linking to LaTeX labels and external URLs
\usepackage{array} % Used for table formatting
\newcolumntype{P}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\usepackage{booktabs} % Fancy-style tables
\usepackage{longtable} % Allows for tables that are more than one page long
\usepackage{float} % Better figure placement control
\usepackage{enumerate}
\usepackage[shortlabels]{enumitem} % Numbered lists
\usepackage[shortcuts]{extdash} % Allows manual hyphenation of hyphenated words
\usepackage{amsmath} % Non-standard math symbols
\usepackage{amsfonts} % Extended fonts for
%mathematics
\usepackage{xcolor}
\usepackage{csquotes} % Allows quotes
\usepackage{multirow}
\usepackage{url}
\numberwithin{equation}{section} % Numbers equations based on their section
% ********************************
\begin{document}
\beforepreface % Half title page, title page, declaration page
% \include{layabstr} % Lay Abstract
\include{abstr} % Abstract
%\include{dedic} % Dedication
%\include{acknowledgements} % Acknowledgements
\referencepageswithnotations{notation} % Table of Contents, List of Figures, List of Tables, Notations
%\referencepages % No notations version (choose one)
\afterpreface
\include{introduction}
\setcounter{figure}{0}
\setcounter{equation}{0}
\setcounter{table}{0}
\include{chapter_2}
\setcounter{figure}{0}
\setcounter{equation}{0}
\setcounter{table}{0}
\include{chapter_3}
\setcounter{figure}{0}
\setcounter{equation}{0}
\setcounter{table}{0}
\include{chapter_4}
\setcounter{figure}{0}
\setcounter{equation}{0}
\setcounter{table}{0}
\include{conclusion}
\setcounter{figure}{0}
\setcounter{equation}{0}
\setcounter{table}{0}
% \begin{appendix}
% \include{appendixA}
% \setcounter{figure}{0}
% \setcounter{equation}{0}
% \setcounter{table}{0}
% \include{appendixB}
% \setcounter{figure}{0}
% \setcounter{equation}{0}
% \setcounter{table}{0}
% \end{appendix}
% The bibliography is set up to allow for multiple bib files
\bibliographystyle{plain}
\bibliography{library}
\label{NumDocumentPages}
\end{document}
% ********************************