我有一份词汇表。我们可以这样说:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[acronym]{glossaries}
\newacronym{gcd}{GCD}{Greatest Common Divisor}
\newacronym{lcm}{LCM}{Least Common Multiple}
\makeglossaries
\begin{document}
Given a set of numbers, there are elementary methods to compute
its \acrlong{gcd}, which is abbreviated \acrshort{gcd}. This process
is similar to that used for the \acrfull{lcm}.
\printglossary[type=\acronymtype]
\end{document}
我喜欢在条目后面加上页码。但是我怎样才能将它们括在括号中,或者在它们前面加上一些文字,例如“Page(s): 1”?