-
Notifications
You must be signed in to change notification settings - Fork 2
/
report.tex
60 lines (49 loc) · 1.21 KB
/
report.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
\documentclass[
english,
]{report}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\input{meta}
\input{general/packages}
\input{general/page_style}
\input{general/commands}
\begin{document}
% cover --------------------------------------------------------------------
\input{cover}
% toc --------------------------------------------------------------------
\newpage
\pagenumbering{roman}
\thispagestyle{roman}
\listoffigures
\thispagestyle{roman}
\newpage
\listoftables
\thispagestyle{roman}
\newpage
\tableofcontents
\thispagestyle{roman}
% main ---------------------------------------------------------------------
\newpage
\pagenumbering{arabic}
\setcounter{page}{1}
\pagestyle{arabic}
\input{introduction}
\input{summary}
\input{methodology}
\input{conclusion}
\label{subsec:LASTPAGE}
% bibliography ---------------------------------------------------------------------
\newpage
\pagenumbering{roman}
\setcounter{page}{4}
\pagestyle{roman}
\bibliographystyle{references/style/natdin}
\bibliography{references/oscp}
\thispagestyle{roman}
% appendix ---------------------------------------------------------------------
\newpage
\clearpage
\pagestyle{appendix}
\input{appendix}
\thispagestyle{appendix}
\end{document}