-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlf-thesis.tex
62 lines (50 loc) · 2.48 KB
/
lf-thesis.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
\documentclass[12pt, twoside]{book} % change to 'oneside' if not printing both sides
%\title{BE(Hons) 2017 thesis template} % Edit if desired - used by "Overleaf", not currenty used by LaTeX
% The file "Preamble.tex" input here is required to set up the document - keep but edit if required
\input{Preamble}
\input{math_commands.tex}
\begin{document}
% =========================================================================
% Front matter
% Modify cover page, declaration, abstract, acknowledgements, Nomenclature
% etc. as required. For draft purposes you can comment out some lines.
% =========================================================================
\frontmatter % Don't delete this line
\cleardoublepage
\thispagestyle{empty} % suppress header/footer for the title page
\input{F1_CoverPage}
\input{F2_Declaration}
\input{F3_Abstract}
\input{F4_Acknowledgements}
\tableofcontents
\listoffigures % optional
\listoftables % optional
\input{F6_Nomenclature}
% =========================================================================
% The main thesis body
% Consider putting chapters etc. in separate files using \input{filename}
% =========================================================================
\mainmatter % Don't delete this line
\input{introduction}
\input{ana-meth}
\input{case-study}
\input{conclusion}
% \input{Chapter1_ex}
% \input{Chapter2_etc_ex}
% =========================================================================
% References/Bibliography
% Note that you must use a style that is compatible with the natbib package
% (e.g. plainnat or newapa) or remove "\usepackage{natbib}" from preamble.
% =========================================================================
\bibliographystyle{IEEEtranN} % choose a style here
\cleardoublepage \phantomsection \addcontentsline{toc}{chapter}{\bibname} % This adds it to the table of contents with the right page numbering
\bibliography{lf-thesis} % Your 'bib' file
% =========================================================================
% Appendices
% =========================================================================
% \input{Appendices}
% =========================================================================
% Back matter (if required, otherwise delete)
% =========================================================================
%\backmatter
\end{document}