I have multiple similar glossaries with different indexes. I would like for all of them to hyperlink to one glossary entry. Is it possible?
Code:
\documentclass{article}
\usepackage[unicode, colorlinks=true]{hyperref}
\usepackage[automake, acronym, nopostdot, nonumberlist, style=super, shortcuts]{glossaries}
\setlength{\glsdescwidth}{0.9\textwidth}
\makeglossaries
\newglossaryentry{F1}{name = \ensuremath{F_1}, description = Force in cross-section 1}
\newglossaryentry{F2}{name = \ensuremath{F_2}, description = Force in cross-section 2}
\newglossaryentry{F3}{name = \ensuremath{F_3}, description = Force in cross-section 3}
\glsaddall
\begin{document}
\printglossary
\section{Text}
There are three cross-sections.
The force in cross-section 1: $\gls{F1} = 10 kN$.
The force in cross-section 2: $\gls{F2} = 15 kN$.
The force in cross-section 3: $\gls{F3} = 20 kN$.
\end{document}
Currently it looks like this:
I want it to look like this:
And I want the glossaries F_1, F_2 and F_3 to point to F_i in Glossary.

