blob: 6de6959f47fcaac4744216de0901d98775eaef28 (
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 134 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}
|