I need help with the following.
In the list of words that I generate with the glossaries package, I want to add the legend (see page x), the parentheses are also part of what I want.
The expression p. or pages. corresponds to whether a single entry or multiple entries are shown.
Image 1 and 2 summarize my ideas.
Thank you
I add the code that generates this output
\documentclass{book}
\usepackage{ImagoMundi}% my style
\usepackage{bib-valbusa}% my style
\addbibresource{MANGIANTINI.bib}
%% SIGLAS
\usepackage[toc,style=index]{glossaries}
\renewcommand*{\glsnamefont}[1]{\textmd{#1}}
\makeglossaries
\newglossaryentry{AOMA}{name={AOMA:},text={AOMA},description={Asociación Obrera Minera Argentina}}
\newglossaryentry{APR}{name={APR:},text={APR},description={Alianza Popular Revolucionaria}}
...
\begin{document}
\renewcommand{\glossaryname}{Índice de siglas}}
\gls{AOMA}
\gls{APR}
...
\printglossary
...
\end{document}


