This is my first time with glossaries. I want a symbols list with references to the page where the symbol appears (like in the basic examples!), but for some reason I cannot make the references appear. After reading some manuals and questions here, I have added some options and I'm trying with glossaries-extra. This is what I have:
\documentclass{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage[colorlinks]{hyperref} \usepackage[symbols,nogroupskip,sort=use,automake,xindy]{glossaries-extra} \makeindex \makeglossaries \glsxtrnewsymbol[description={an angle}]{al}{\ensuremath{\alpha}} \begin{document} \gls{al} \printunsrtglossary[type=symbols,title={Symbols List}] \end{document} but I want to add the page number where the symbol \alpha in red occurs.
I have tried the following compilation:
pdflatex foo makeindex -s foo.ist -o foo.gls foo.glo pdflatex foo and overleaf compilation.
Any help would be appreciated. Thanks in advance
