-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
119 lines (85 loc) · 3.38 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
% Copyright (C) 2013 Jana Traue (jana.traue[at]tu-cottbus.de)
%
% Permission is granted to copy, distribute and/or modify this document
% under the terms of the GNU Free Documentation License, Version 1.3
% or any later version published by the Free Software Foundation;
% with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
% A copy of the license is included in the file entitled "LICENSE".
%
% =============================================================================
% LATEX main file
% =============================================================================
% -----------------------------------------------------------------------------
% include header: used packages, define commands, ....
% -----------------------------------------------------------------------------
\include{contents/global/header}
% -----------------------------------------------------------------------------
% include glossary items
% -----------------------------------------------------------------------------
% \makeglossaries
% \include{contents/global/glossary}
% -----------------------------------------------------------------------------
% set graphics path
% -----------------------------------------------------------------------------
\graphicspath{{figures/}}
% -----------------------------------------------------------------------------
% actual document
% -----------------------------------------------------------------------------
\begin{document}
% -----------------------------------------------------------------------------
% title page
% -----------------------------------------------------------------------------
% numbering with letters
\pagenumbering{alph}
% title page
\include{contents/global/titlepage}
% -----------------------------------------------------------------------------
% front matter: table of contents, ...
% -----------------------------------------------------------------------------
\frontmatter % start numbering pages
\pagenumbering{roman} % numbering with roman numbers
% assertion
\include{contents/global/assertion}
% table of contents
\include{contents/global/tableofcontents}
% list of all todos
% \include{contents/todo}
% \listoftodos
% -----------------------------------------------------------------------------
% main matter: all chapters
% -----------------------------------------------------------------------------
\mainmatter
\pagenumbering{arabic} % numbering with arabic numbers
\include{contents/intro/main}
\include{contents/nvram/main}
\include{contents/kvs/main}
\include{contents/concept/main}
\include{contents/impl/main}
\include{contents/eval/main}
\include{contents/summary/main}
% -----------------------------------------------------------------------------
% appendix
% -----------------------------------------------------------------------------
\cleardoublepage{}
% appendix
\appendix
% acronyms
\include{contents/global/acronyms}
% \printglossaries
% figures
\listoffigures
% tables
\listoftables
% \listofalgorithms
% \listoflistings
% -----------------------------------------------------------------------------
% bibliography
% -----------------------------------------------------------------------------
% for testing, prints all entries of your bibliography
%\nocite{*}
\begin{en}
% \bibliographystyle{unsrt}
\bibliographystyle{alpha}
\end{en}
\bibliography{bib/memory,bib/mmdb,bib/kvs,bib/cc}
\end{document}