-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
46 lines (41 loc) · 1.46 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
\documentclass[12pt,a4paper,twoside]{article}
\input{preamble/packages}
\input{preamble/citations}
% \input{preamble/codehighlighting}
\input{preamble/hyperlinks}
\input{preamble/notes}
\input{preamble/page_layout}
\input{preamble/ref_commands}
%---------------------------------------------------------------
%-------- TITLE PAGE AND TABLE OF CONTENTS ---------------------
%---------------------------------------------------------------
\input{sections/title_page}
\begin{document}
\begin{titlingpage}
\maketitle
% \vspace{-8pt}
\input{sections/abstract}
\input{sections/acknowledgements}
\end{titlingpage}
%---------------------------------------------------------------
%-------- SECTIONS ---------------------------------------------
%---------------------------------------------------------------
\input{sections/introduction}
\input{sections/framework}
\input{sections/data}
\input{sections/method}
\input{sections/results}
\input{sections/discussion}
\input{sections/conclusion}
\clearpage
\printbibliography[heading=bibintoc] % add to table of contents
%---------------------------------------------------------------
%-------- APPENDIX ---------------------------------------------
%---------------------------------------------------------------
\clearpage
% \newgeometry{margin=10mm, top=25mm, bottom=20mm}
\appendix
% \setcounter{page}{1}\pagenumbering{roman}
\renewcommand{\theequation}{\thesection.\arabic{equation}}
\input{sections/appendix}
\end{document}