forked from Tosuma/AAU-Latex-Template-English
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.tex
81 lines (58 loc) · 2.58 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
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
% !TEX root = ./master.tex
\input{setup/preamble.tex} % Set up of the document - do not touch unless you know what you are doing!
\input{setup/acronyms.tex} % Adding the acronyms.
\input{setup/packages} % New packages should be included here
\input{setup/hyphenations.tex} % How to split words
\input{setup/macros.tex} % Macros for making the frontpage
\input{CustomCommands} % Custom commands
%%%%%%%%%%%%%%%%%%
%%% Change here for one-
%%% or two-page setup
\setlength{\marginparwidth}{2cm} % !!If using two pages-setup (book-style) mark this line as comment
%%%%%%%%%%%%%%%%%%
% Begins the document for text
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%% Frontmatter %%%%%%%%%%
% Setup for pages before content of the paper
\pagestyle{empty} % Disable headers and footers
\pagenumbering{roman} % Use roman page numbering in the frontmatter
%%%%%%%%%%%%%% Front pages %%%%%%%%%%%%%
\input{sections/0frontpages/frontpageImage}
\input{sections/0frontpages/frontpage}
\input{sections/0frontpages/titlepages}
\cleardoublepage
\pdfbookmark[0]{Contents}{label:contents}
\pagestyle{fancy} % Enable headers and footers again
% Insert table of contents
\tableofcontents
% Inserts a list of ToDos
\listoftodos % Comment this to remove ToDos from paper
% Preface with signatures
\input{sections/0frontpages/preface} % Comment this line to remove Preface with signatures
\cleardoublepage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%% Mainmatter %%%%%%%%%%
% Setup for the main content of the paper
% If you do not write the report in English,
% translating the bibliography title to, e.g., Danish,
% should not be done here. Instead, you should change the
% main language in the preamble (look for the line \usepackage[english]{babel}
% and change the 'english' option to danish). See more in the babel package documentation.
\pagenumbering{arabic} % Use arabic page numbering in the mainmatter
%%%%%%%%%%%%%%% Chapters %%%%%%%%%%%%%%%
% Use this file to input all chapters
\input{docSetup}
%%%%%%%%%%%%%%% Acronyms %%%%%%%%%%%%%%%
% This prints the acronyms used in the paper.
\printglossary[type=\acronymtype]
%%%%%%%%%%%%% Bibliography %%%%%%%%%%%%%
% If you have multiple .bib files, remember to
% include them in the ./setup/preamble.tex file
\printbibliography[heading=bibintoc, title=Bibliography]
\label{bib:mybiblio}
%%%%%%%%%%%%%%% Appendix %%%%%%%%%%%%%%%
\appendix
\input{sections/8appendix/!index} % Use this file to input the material for the appendix
% End of document
\end{document}