summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/glossaries-extra/samples/sample-restricteddocdefs.tex
blob: b0ca68763b9f2a14af05f85d8cf2564645682ea4 (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
29
30
31
32
33
% arara: pdflatex
% arara: makeglossaries
% arara: pdflatex
\documentclass{article}

\usepackage[docdef=restricted,
 undefaction=warn
 ]{glossaries-extra}

\makeglossaries

\begin{document}

\newglossaryentry{sample}{name={sample},description={an example}}

\gls{sample}.

\printglossaries

Too late to define an entry with the \texttt{docdef=restricted}
setting. (Definitions must come before \verb|\printglossary|.)

\newglossaryentry{sample2}{name={sample2},description={another
example}}

New entry just defined: \gls{sample2}.
This will cause an error (or warning with \texttt{undefaction=warn})
in \verb|\printglossaries|.
This missing entry will be marked with two question marks ?? 
in the glossary.


\end{document}