summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/glossaries-extra/samples/sample-docdef.tex
blob: 8271b488fae032c37670d9ee54633eac93d40969 (plain)
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
% arara: pdflatex
% arara: makeglossaries
% arara: pdflatex
\documentclass{article}

\usepackage[docdef]{glossaries-extra}

\makeglossaries

\begin{document}

\printglossaries

This is a sample document testing the use of document definitions
for those who are happy to accept all the associated drawbacks
of not following the advice in the glossaries manual about
defining all your entries in the preamble. Use it at your own
peril.

\newglossaryentry{sample}{name=sample,description={an example}}
\newglossaryentry{sample2}{name={another sample},
 description={another example},see={sample}}
\newabbreviation{ab}{AB}{sample abbreviation}

Use \gls{sample2}.

Use \gls{ab}.
\end{document}