-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
91 lines (64 loc) · 1.71 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
\documentclass{report}
% \documentclass{article}
\include{defs}
% generate word count text file wc.tex - This is only applied after compiling the document: i.e. $ pdflatex main.tex
\immediate\write18{bash wc.sh}
\begin{document}
% title page
\input{titlepage.tex}
% preface
% \input{sections/0-preface}
% roman numbering for abstract, TOC, glossary etc.
\pagenumbering{roman}
% abstract
\clearpage
\begin{abstract}
\input{chapters/abstract/abstract.tex}
\end{abstract}
% table of contents
\clearpage
\tableofcontents
% workload distribution
\clearpage
\input{chapters/acknowledgements/acknowledgements.tex}
\addcontentsline{toc}{section}{Acknowledgments}
% glossary & acronyms
\clearpage
\addcontentsline{toc}{section}{Acronyms and Terms}
\printglossary[type=acronym, title=Acronyms, style=mcolindex]
\printglossary[type=main, title=Terms]
% main document
\clearpage
\pagenumbering{arabic}
\glsresetall
% \pagebreak
% \input{chapters/example/example.tex}
\pagebreak
\input{chapters/introduction/introduction.tex}
\pagebreak
\input{chapters/system-setup/system-setup.tex}
\pagebreak
\input{chapters/state-of-the-art/state-of-the-art.tex}
\pagebreak
\input{chapters/modeling/modeling.tex}
\pagebreak
\input{chapters/1-problem/1-problem.tex}
\pagebreak
\input{chapters/2-problem/2-problem.tex}
\pagebreak
\input{chapters/3-problem/3-problem.tex}
\pagebreak
\input{chapters/discussion-conclusion/discussion-conclusion.tex}
% \pagebreak
% \input{chapters/conclusion/conclusion.tex}
% bibliography
\pagebreak
% \printbibliography[heading=bibintoc
% \begin{multicols}{2}[\printbibheading]
% \printbibliography[heading=none]
% \end{multicols}
\printbibliography
\newpage
\appendix
\input{chapters/appendix/appendix.tex}
\end{document}