-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathacronyms.tex
27 lines (18 loc) · 845 Bytes
/
acronyms.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
\documentclass{article}
% Acronym management: package ``glossaries''
\usepackage[acronym,shortcuts]{glossaries}
% Define your acronyms: ID, short version, long version
\newacronym{WUR}{WUR}{Wageningen University \& Research}
\newacronym{WU}{WU}{Wageningen University}
\newacronym{WR}{WR}{Wageningen Research}
\newacronym{WENR}{WENR}{Wageningen Environmental Research}
% Create an index at the end of the document, simple style
\makenoidxglossaries
\title{Acronyms}
\author{Dainius Masili\=unas}
\begin{document}
\maketitle
\ac{WUR} is an organisation that is comprised of \ac{WU} and \ac{WR}. \ac{WR} includes institutes like \ac{WENR}. While \ac{WENR} is not part of \ac{WU}, they are both part of \ac{WUR} and thus there is a lot of collaboration between them.
% Place the index here
\printnoidxglossary[type=acronym]
\end{document}