\documentclass{article}
\usepackage{hyperref}
\usepackage{glossaries}
\newglossaryentry{solve}{name={solve},description={to find an answer}}
\makeglossary
\begin{document}
You can \gls{solve} an equation if a
solution % HERE
exists
\printglossaries
\end{document}
I need to link "solution" to \gls{solve} despite different spelling.
I assumed \gls[<alternate text>]{<label>} exist but it does not.
\glslink{foo}{solution}– Marco Daniel Feb 24 at 16:38\glsbut for instance\glscustom) but it displays a custom combination of the attributes in theglossaryentry- without breaking the functionality of the original commands? e.g. Output looks like:<Name> <user1> <description>. – Sensei Apr 6 at 0:10