主要原因是在文本中我希望 QUT 显示为“昆士兰科技大学”,但我希望它在首字母缩略词列表中出现时不带前导“the”。
这可能吗?
如果不是,那么处理需要长格式“the”但不需要短格式的首字母缩略词的好方法是什么?
答案1
您可以将文本设置为出现在首字母缩略词列表中,作为命令description
的可选参数\newacronym
\documentclass{article}
\usepackage{glossaries}
\makeglossaries
\newacronym[description=Queensland University of Technology]{QUT}{QUT}{the Queensland University of Technology}
\begin{document}
In \gls{QUT}, they did something.
\printglossary[type=\acronymtype]
\end{document}