-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.tex
89 lines (61 loc) · 1.67 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
% CREATED BY DAVID FRISK, 2015
% IMPORT SETTINGS
\documentclass[11pt,a4paper,twoside,openright]{report}
\usepackage{graphicx}
\usepackage{array}
\usepackage{caption}
\usepackage{datetime}
\graphicspath{ {figure/} }
\input{include/settings/Settings}
\begin{document}
% COVER PAGE, TITLE PAGE AND IMPRINT PAGE
\pagenumbering{roman} % Roman numbering (starting with i (one)) until first main chapter
\input{include/frontmatter/Titlepage}
% ABSTRACT
\newpage
\input{include/frontmatter/Abstract}
% ACKNOWLEDGEMENTS
\newpage
\input{include/frontmatter/Acknowledgements}
% TABLE OF CONTENTS
\newpage
\tableofcontents
% OTHER FRONTMATTER
% List of figures (add to table of contents)
\cleardoublepage
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
% List of tables (add to table of contents)
\cleardoublepage
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
% START OF MAIN DOCUMENT
\cleardoublepage
\setcounter{page}{1}
\pagenumbering{arabic} % Arabic numbering starting from 1 (one)
\setlength{\parskip}{0pt plus 1pt}
\setlength{\parindent}{15pt}
% INTRODUCTION
\input{include/Introduction}
% THEORY
\input{include/Theory}
% METHODS
\input{include/Methods}
\input{include/Development}
% EXPERIMENTS
\input{include/Experiments}
% CONCLUSION
\input{include/Discussion}
% REFERENCES / BIBLIOGRAPHY
\cleardoublepage
\input{include/backmatter/References}
% APPENDICES
\cleardoublepage
\appendix
\setcounter{page}{1}
\pagenumbering{Roman} % Capitalized roman numbering starting from I (one)
%\input{include/backmatter/Appendix_1}
%\input{include/backmatter/Appendix_2}
%\input{include/backmatter/Appendix_3}
\input{include/backmatter/Appendix_4}
\end{document}