summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example133.tex
blob: 1067f88c3825c8b920505f486c3cb167960c9955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
% This file is embedded in glossaries-extra-manual.pdf
% Example 133 Prepending to the target prefix for just the entry item
% Label: "ex:targetprefixname"
% 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}