[Tex/LaTex] Make glossary defined terms bold

boldglossaries

I have defined a lot of terms with the glossaries package and use them in my text with the \gls{} command. However, I'd like terms called with \gls{} to appear bold, so people know that it is a term defined in the glossary.
What command do I have to renew and how to achieve this?

Thanks in advance,

Best Answer

The glossaries package offers the command \glstextformat to control the way the text is displayed, so you can write

\renewcommand*{\glstextformat}[1]{\textbf{#1}}

or

\renewcommand*{\glstextformat}{\textbf}

in the preamble of your document.

Related Question