summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/glossaries-extra/sample-restricteddocdefs.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/glossaries-extra/sample-restricteddocdefs.tex')
-rw-r--r--Master/texmf-dist/doc/latex/glossaries-extra/sample-restricteddocdefs.tex33
1 files changed, 33 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/glossaries-extra/sample-restricteddocdefs.tex b/Master/texmf-dist/doc/latex/glossaries-extra/sample-restricteddocdefs.tex
new file mode 100644
index 00000000000..b0ca68763b9
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/glossaries-extra/sample-restricteddocdefs.tex
@@ -0,0 +1,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}