blob: 55b080fa25787177977e22d75e1f6d0e5fb72a0b (
plain)
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
|
\documentclass[11pt]{report}
\input{style/style.tex}
\input{appendix/glossary.tex}
\begin{document}
\input{style/first-page}
%\input{content/preamble/abstract}
%\input{content/preamble/dedication}
%\input{content/preamble/acknowledgement}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\tableofcontents
\newpage
%\listoffigures
%\listoftables
\input{content/intro}
\input{content/background}
\input{content/design}
\input{content/implementation}
\input{content/evaluation}
\input{content/conclusion}
\printglossary[type=\acronymtype]
\bibliographystyle{is-unsrt}
\bibliography{main}
\input{appendix/appendix}
\end{document}
|