-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.tex
65 lines (54 loc) · 1.9 KB
/
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
\documentclass{ecsproject}
%TC:ignore
\input{Misc/Preamble}
%TC:endignore
\begin{document}
%---------------------------------------------------- extra setup
%TC:ignore
\bstctlcite{IEEEexample:BSTcontrol}
%TC:endignore
%---------------------------------------------------- pre-body
%TC:ignore
\include{Misc/Front-Page}
\include{Misc/Abstract}
\include{Misc/Statement-of-Originality}
%TC:endignore
%---------------------------------------------------- table of contents
%TC:ignore
\include{Misc/Table-of-Contents}
%TC:endignore
%---------------------------------------------------- lists of figures, tables, symbols and listings
%TC:ignore
\include{Misc/Lists}
%TC:endignore
%---------------------------------------------------- report body
\hypersetup {
urlcolor={black},
}
\mainmatter
% note includes can't have spaces in file name
% use \input to allow spaces (slower)
\include{Chapters/01-Chapter-1}
\include{Chapters/02-Chapter-2}
\include{Chapters/03-Chapter-3}
%---------------------------------------------------- bibliography
%TC:ignore
\backmatter
\include{Misc/References}
%TC:endignore
%---------------------------------------------------- appendix
%TC:ignore
% \mainmatter resets the page count but is necessary to put the
% appendix after the references, which requires this workaround
% with counters to fix the page numbers. There is probably a
% better way, but this works. You can also put the references
% after the appendix and get rid of the stuff with the counters.
\newcounter{appendixpage}
\setcounter{appendixpage}{\thepage}
\addtocounter{appendixpage}{1}
\mainmatter
\setcounter{page}{\theappendixpage}
\include{Chapters/Appendix}
%TC:endignore
\end{document}
%