-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
66 lines (66 loc) · 1.72 KB
/
thesis.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
% ==================================================
% LATEX main file
% ==================================================
% --------------------------------------------------
%
% definitions unrelated to actual contents
\input{contents/global/header.tex}
%
% where are your images
\graphicspath{{figures/}}
%
% bibliography
\bibliography{bib/references.bib}
%
% common tikz settings
\input{figures/styles.tex}
%
% --------------------------------------------------
\begin{document}
%
% --------------------------------------------------
\pagenumbering{alph} % numbering with letters
\input{contents/global/titlepage.tex}
\input{contents/abstract.tex}
%
% --------------------------------------------------
\frontmatter
\pagenumbering{roman} % numbering with roman numbers
\input{contents/global/tableofcontents.tex}
%
% --------------------------------------------------
\mainmatter
\pagenumbering{arabic} % numbering with arabic numbers
%
% TODO: remove this chapter and put your own contents in it
\include{contents/demo}
% \include{contents/intro}
% \include{contents/sota}
% \include{contents/design}
% \include{contents/evaluation}
% \include{contents/conclusion}
%
% --------------------------------------------------
% appendix
\appendix
\ihead{%
{\color{CustomColorDark}\hrule height 2pt}
}
\input{contents/global/acronyms.tex}
%
% --------------------------------------------------
% bibliography
%
% for testing, prints all entries of your bibliography
% \nocite{*}
%
% english bibliography styles
% \bibliographystyle{unsrt}
%\bibliographystyle{alpha}
%
% german bibliography styles
%\bibliographystyle{babunsrt} % babble bibliography support
%\bibliographystyle{gerunsrt} % items sorted in citation order
\printbibliography
%
\end{document}