-
Notifications
You must be signed in to change notification settings - Fork 1
/
master.tex
38 lines (29 loc) · 1.05 KB
/
master.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
\input{setup/preamble.tex}% package inclusion and set up of the document
\input{setup/hyphenations.tex}%
\input{setup/macros.tex}% my new macros
\input{setup/Glossary.tex}
\begin{document}
% Sætter vores listing environment til C# kode ordentligt op.
\lstset{basicstyle=\tiny, tabsize = 2, xleftmargin = 5pt, keepspaces = true, numbersep = 5pt }
%frontmatter
\pagestyle{empty} %disable headers and footers
\pagenumbering{roman} %use roman page numbering in the frontmatter
\input{sections/00-Setup/frontpage.tex}
\input{sections/00-Setup/colophon.tex}
\input{sections/00-Setup/titlepages.tex}
\cleardoublepage
\pdfbookmark[0]{Table of contents}{label:contents}
\pagestyle{fancy} %enable headers and footers again
\setcounter{tocdepth}{1}
\tableofcontents
\input{sections/00-Setup/preface.tex}
%mainmatter
\pagenumbering{arabic} %use arabic page numbering in the mainmatter
\input{sections/00-Setup/01-introduction.tex}
%\nocite{*}
\bibliography{bib/mybib}
\label{bib:mybiblio}
\appendix
\printnoidxglossaries
\input{sections/99-Appendix/00-main.tex}
\end{document}