I would like to change the format used to print the number list in a glossary created with the glossaries package to match the style that I am using in my bibliography. However, I cannot find any information how to achieve this.
Starting from the MWE
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[nopostdot,style=indexgroup,nolist]{glossaries}
\makenoidxglossaries
\newglossaryentry{target}
{
name={target},
description={Foo foo bar}
}
\newglossaryentry{link}
{
name={link},
description={Another example \gls{target}}
}
\begin{document}
\Gls{target} and \gls{link}.
\newpage
\printnoidxglossary
\end{document}
I would like to achieve a style that resembles my bibliography which looks like:
That means I want to have "used on: p. 42" or "used on: pp. 3, 10, 17-30" in italics.


used on: pp ...? etc. – Troy Aug 13 '17 at 16:13noidxoption doesn't form ranges. You'll have to switch to using\makeglossarieswithmakeindexorxindyand try How to make the term “page” show in the Glossary list? – Nicola Talbot Aug 17 '17 at 16:27