This repository was archived by the owner on Jan 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
65 lines (50 loc) · 1.58 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
% Template author - Jon Arnt Kårstad, NTNU IMT
% Author - Andreas B. Berg
% \documentclass[openany,oneside,a4paper,12pt]{book}
\documentclass[a4paper,12pt]{article}
% Importing document settings from our file "packages.sty"
\usepackage{packages}
% Beginning of document
\begin{document}
% Inserting title page
\import{./}{title}
% Defining front matter settings (Norsk: innstillinger for forord m.m.)
\frontmatter
% Insert abstract
\import{./Sections/}{00 Abstract}
\newpage
% Inserting table of contents
\tableofcontents
\newpage
% Inserting list of figures & list of tables
\listoffigures
\listoftables
% Remove before submitting
% \listoftodos[\textcolor{red}{TODOs: REMOVE BEFORE SUBMITTING}]
% Defining main matter settings (Norsk: innstillinger for hoveddelen av teksten)
\mainmatter
% Introduction explaining this LaTeX-template
\import{./Sections/}{10 Introduction}
\import{./Sections/}{15 Background}
\import{./Sections/}{20 Method}
\import{./Sections/}{30 Results}
\import{./Sections/}{40 Discussion}
\import{./Sections/}{60 Conclusion}
% Printing bibliography
\section{References}
\printbibliography[heading = subbibnumbered, title = {Literature review}, keyword={litrev}]
\printbibliography[heading = subbibnumbered, title = {References not used in literature review}, notkeyword={litrev}]
% Appendices
\appendix
\begin{appendices}
\newpage
\import{./Appendices/}{Search terms}
\newpage
\import{./Appendices/}{Coding example}
\newpage
\import{./Appendices/}{Paper overview}
\newpage
\import{./Appendices/}{Paper principles}
\end{appendices}
% End of document
\end{document}