-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
116 lines (91 loc) · 2.12 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
\documentclass[
a4paper,
man,
fleqn,
british,
article,
12pt
]{book}
\usepackage[british]{babel}
\usepackage[utf8]{inputenc}
\usepackage{epstopdf}
\usepackage{csquotes}
\usepackage{fancyhdr}
\usepackage[hidelinks]{hyperref}
\usepackage[
style=apa,
backend=biber,
sortcites=true,
sorting=nyt,
% isbn=false,
% url=false,
% doi=false,
% eprint=false,
hyperref=true,
backref=true,
% firstinits=false,
]{biblatex}
\usepackage[toc]{glossaries}
\usepackage{graphicx} % Images
\usepackage{wrapfig}
\graphicspath{{imgs/}} % Specifies the directory where pictures are stored
\usepackage{caption}
\DeclareLanguageMapping{british}{british-apa}
% maps apacite commands to biblatex commands
\let \citeNP \cite
\let \citeA \textcite
\let \cite \parencite
\bibliography{references}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%=============================================================================
%% Wordlist
%%=============================================================================
\newglossaryentry{AD}
{
name={AD},
description={Alzheimer's disease}
}
\newglossaryentry{QoL}
{
name={QoL},
description={Quality of Life}
}
\newglossaryentry{NPi}
{
name={NPi},
description={Nocturnal Polyuria index}
}
\newglossaryentry{NUV}
{
name={NUV},
description={Nocturnal urinary volume}
}
\newglossaryentry{MVV}
{
name={MVV},
description={Maximum voided volume}
}
\newglossaryentry{DI}
{
name={DI},
description={diabetes insipidus}
}
\makenoidxglossaries
%%=============================================================================
%% Document
%%=============================================================================
\title{%
Personal research paper about health \\
\large An alternative view on some common health issues \\ }
\author{Matthias Beerens}
%\keywords{health}
\begin{document}
\pagestyle{fancy} % Print headers again
\maketitle
%---------- Index ------------------------------------------------------
\tableofcontents % Print the table of contents itself
% worldlist
\printnoidxglossaries
\input{loader}
\printbibliography
\end{document}