summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example133.tex
blob: e778d38b79e015e9ca073764d88d915f1980eace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
% This file is embedded in glossaries-extra-manual.pdf
% Example 133 Prepending to the target prefix for just the entry item
% arara: pdflatex
% arara: pdfcrop
\documentclass[12pt]{article}
\pagestyle{empty}
\usepackage[colorlinks]{hyperref}
\usepackage[showtargets=annoteleft,style=tree]{glossaries-extra}
\newglossaryentry{sample}{name={sample},
 description={an example description that references \gls{another}}}
\newglossaryentry{another}{name={another},
 description={some other example description that references \gls{sample}}} 
\begin{document}
Link to glossary 1: \gls{sample}. 

Link to glossary 2: \gls[prefix={other-glo:}]{sample}.
\printunsrtglossary
\printunsrtglossary[targetnameprefix=other-] 
\end{document}