-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmaster.tex
executable file
·69 lines (59 loc) · 1.66 KB
/
master.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
%% ----------------------------------------------------------------
%% REPORT-NAME.tex
%% ----------------------------------------------------------------
\documentclass{src/ecsgdp}
\graphicspath{{./images/}}
\hypersetup{colorlinks=true}
\input{src/definitions}
%% ----------------------------------------------------------------
\begin{document}
\frontmatter
\title {INSERT YOUR PROJECT TITLE HERE}
\authors {
{Author 1},
{Author 2},\\
{Author 3},
{Author 4}
}
\addresses {\groupname\\\deptname\\\univname}
\date {February 1, 2018}
\subject {}
\keywords {}
\supervisor {Professor Person A}
\examiner {Dr Person B}
\degree {Master of Engineering}
\reporttype {group design project report} % Change here if you're doing a 3YP report
\maketitle
\begin{abstract}
\input{0_Abstract}
\end{abstract}
\tableofcontents
\listoffigures
\listoftables
\lstlistoflistings
%% ----------------------------------------------------------------
% Optional extra pages
%\listofsymbols{ll}{$w$ & The weight vector}
%\acknowledgements{Here are some acknowledgements}
%\dedicatory{To \dots}
%% ----------------------------------------------------------------
% \mainmatter means that we've gone from i, ii, iii, iv, v etc. introduction
% numbering to 1,2,3,4,5 chapter numbering
\mainmatter
\include{00_Introduction}
\include{1_Chapter1}
\include{2_Chapter2}
\include{3_Chapter3}
\include{9_Conclusions}
% \backmatter means that we've gone from 1,2,3,4,5 chapter numbering
% to unnumbered bibliography/appendices.
\backmatter
\bibliographystyle{src/IEEEtran}
\bibliography{master}
\appendix
\include{99_Appendix}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End: