forked from mathildor/latex-thesis-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrapport.tex
48 lines (35 loc) · 1022 Bytes
/
rapport.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
\input{docsetup.tex}
\input{glossary.tex}
\begin{document}
\renewcommand{\lstlistingname}{Code} %change name for all lstings to code
\renewcommand{\lstlistlistingname}{List of Code} %change name for lstings for contents and list header
\input{spacingSetup.tex}
\frontmatter
\input{frontpage.tex}
\input{abstract.tex}
\input{sammendrag.tex}
\input{preface.tex}
\doublespacing
\tableofcontents
\singlespacing
\label{glossary}
\printglossary
\addcontentsline{toc}{chapter}{\listfigurename}
\listoffigures
\addcontentsline{toc}{chapter}{\listtablename}
\listoftables
\addcontentsline{toc}{chapter}{\lstlistlistingname}
\lstlistoflistings
\mainmatter
%Add all files containing content of paper
\input{Introduction.tex}
\input{Software-recommendations.tex}
\medskip
\addcontentsline{toc}{chapter}{References}
%Set bib file, produced by mendeley
\bibliography{bibtex/library.bib}
%Define style for bibliography
\bibliographystyle{apalike}
\input{appendix.tex}
\glsaddall %Adding all glossary entries
\end{document}