blob: e2de8bfbefb4c789d85d38bb333a5160ed1651ec (
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
|
% arara: pdflatex
% arara: makeglossaries
% arara: pdflatex
\documentclass{article}
\usepackage[colorlinks]{hyperref}
\usepackage{glossaries-extra}
\makeglossaries
\glssetcategoryattribute{supplementary}{externallocation}{sample-suppl-hyp.pdf}
\newglossaryentry{sample}{category={supplementary},
name={sample},description={an example}}
\begin{document}
\section{Sample}
Some \gls{sample} text.
Test link: \hyperref{sample-suppl-hyp.pdf}{}{section.II.S.2}{S.2}.
In this document, \verb|\theHsection| is in the form: \theHsection.
In the other document, it's in the form II.S.2 so
\texttt{theHvalue} is needed to ensure the hyperlink is correct.
\printglossaries
\glsadd[format=glsxtrsupphypernumber,thevalue={S.2},theHvalue={II.S.2},counter=section]{sample}
\end{document}
|