问题是关于首次复数用法首字母缩略词。考虑以下MWE
\documentclass{article}
\usepackage{glossaries-extra}
\setabbreviationstyle{long-short}
\newacronym{adc}{ADC}{Analog to Digital Converter}
\begin{document}
In this work, a new model of \gls{adc} has been designed. blah blah ....
% lots of text here and finally we reach conclusion section where the
% following sentences appear
This design exercise was motivated by the fact that the current crop of
\glspl{adc} fail to bring aliens down to earth..... blah blah...
Results indicate that compared to the existing bunch of \glspl{adc},
this design is the best thing since slided bread. While other \glspl{adc}
were sub-optimal in blah blah ....
\end{document}
当使用MWE
运行时pdflatex
,它将扩展首字母缩略词的第一次使用。在所有后续使用中,将排版首字母缩略词的复数形式,但不会像预期的那样扩展。
现在,我的博士导师有一个不寻常的要求。他们希望首次复数用法首字母缩略词的首次使用应被视为与该首字母缩略词的首次使用相同,即需要扩张他们。
如何使用来实现这一点glossaries-extra
?