I'm sorry this is probably very basic, but I'm new to latex and it's slowly driving me insane. All I want to do is make references (in the text) to my Glossary that I create with \gls{exampleentry} have a number displayed next to it, so the reader knows where to find it in the glossary. Something like
this [3]
This is what it looks like currently:
Code: Select all
% in my Preamble:
\makeglossaries
\newglossaryentry{latex}
{
name=latex,
description={Is a mark up language specially suited
for scientific documents}
}
% in my Document:
\gls{latex}
Help would be appreciated.