forked from a2s-institute/thesis-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.tex
79 lines (63 loc) · 2.24 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
%
% LaTeX2e Style for MAS R&D and master thesis reports
% Author: Argentina Ortega Sainz, Hochschule Bonn-Rhein-Sieg, Germany
% Please feel free to send issues, suggestions or pull requests to:
% https://github.com/mas-group/project-report
% Based on the template created by Ronni Hartanto in 2003
%
\documentclass[thesis]{mas_report}
% \documentclass[rnd]{mas_report}
% ****************************************************
% THIS INFORMATION SHOULD BE UPDATED FOR YOUR REPORT
% ****************************************************
\author{Your Name}
\title{Project title}
\supervisors{%
First supervisor\\
Second Supervisor\\
Third Supervisor
}
\date{Month 20XX}
% \thirdpartylogo{path/to/your/image}
\begin{document}
\frontmatter
\begin{titlepage}
\maketitle
\end{titlepage}
%----------------------------------------------------------------------------------------
% PREFACE
%----------------------------------------------------------------------------------------
\pagestyle{plain}
\cleardoublepage
\statementpage
\subfile{chapters/abstract}
\subfile{chapters/acknowledgment}
\tableofcontents
\listoffigures
\listoftables
%-------------------------------------------------------------------------------
% CONTENT CHAPTERS
%-------------------------------------------------------------------------------
\mainmatter % Begin numeric (1,2,3...) page numbering
\pagestyle{mainmatter}
\subfile{chapters/ch01_introduction}
\subfile{chapters/ch02_stateoftheart}
\subfile{chapters/ch03_methodology}
\subfile{chapters/ch04_solution}
\subfile{chapters/ch05_evaluation}
\subfile{chapters/ch06_results}
\subfile{chapters/ch07_conclusion}
%-------------------------------------------------------------------------------
% APPENDICES
%-------------------------------------------------------------------------------
\begin{appendices}
\subfile{chapters/appendix}
\end{appendices}
\backmatter
%-------------------------------------------------------------------------------
% BIBLIOGRAPHY
%-------------------------------------------------------------------------------
\addcontentsline{toc}{chapter}{References}
\bibliographystyle{plainnat} % Use the plainnat bibliography style
\bibliography{bibliography.bib} % Use the bibliography.bib file as the source of references
\end{document}