Is there any way to have hyperlinks to the glossaries/acronyms (using glossaries package) in only one direction? What I want is a link to the page where an acronym is used, in the list of acronyms. But I would like to disable the links to the page of the list acronyms, which are currently everywhere an acronym is used.
I was not able to find an answer after trying a lot of things. Is there any other way than to add an asterisk at every reference? Any help is appreciated!
EDIT: MWE as suggested (reference: How to combine Acronym and Glossary)
\documentclass{article}
\usepackage{hyperref}
\usepackage[acronym]{glossaries}
\makeglossaries
\newacronym{cd}{CD}{compact disk}
\begin{document}
\noindent
First use \gls{cd}\\
subsequent \gls{cd}
\printglossaries
\end{document}
What I want would look like this:
A similar question is unanswered here: Disable hyperlinks in some entries for glossaries



\gls[hyper=false]{cd}or\gls*{cd}. – cgnieder Sep 23 '12 at 14:52\glsdisablehyper. Just add that to your preabmle after\usepackage{glossaries}– cgnieder Sep 23 '12 at 15:14\gls{}first, and then only use the starred version. however, I want to avoid scanning my whole document manually and replace everything... – beta Feb 22 '16 at 21:33