summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/glossaries-extra/glossaries-extra-manual-examples/glossaries-extra-manual-example124.tex
blob: 2d249432193d0c3e5a4eaeba33595d6d814b3b35 (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
34
35
36
37
38
39
40
41
42
43
% This file is embedded in glossaries-extra-manual.pdf
% Example 124 Link counting used to selectively suppress hyperlinks
% Label: "ex:linkcount"
% arara: pdflatex
% arara: makeglossaries
% arara: pdflatex
% arara: pdfcrop
\documentclass[12pt]{article}
\pagestyle{empty}
\usepackage[colorlinks]{hyperref}
\usepackage{glossaries-extra} 

\makeglossaries 

\renewcommand*{\glslinkpresetkeys}{%
 \ifnum\GlsXtrLinkCounterValue{\glslabel}>1
 \setupglslink{hyper=false}%
\fi } 

\GlsXtrEnableLinkCounting{general} 

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

\newabbreviation{ex}{ex}{example} 


\begin{document}
\section{Sample Section}


\Gls{sample1}, \gls{sample2} and \gls{ex}.
\Glstext{sample1} and \gls{ex} again.


\section{Another Sample Section}


\Gls{sample1}, \gls{sample2} and \gls{ex}.


\printglossaries 
\end{document}