当使用词汇表在 scrrprt 文档中显示首字母缩略词时,首字母缩略词列表中的首字母缩略词将以粗体无衬线字体打印。但是,我想要 (粗体) 衬线字体。如何实现?
梅威瑟:
\documentclass[english]{scrreprt}
\usepackage[acronym,shortcuts]{glossaries}
\loadglsentries{../acronyms-gls.tex}
\begin{document}
This is some text with acronyms: an \acs{AOFS} and an \acs{AOM} are often used for \acs{CPA}.
\printglossary[type=\acronymtype,title={List of Acronyms}]
\end{document}
首字母缩略词-gls.tex:
\makeglossaries
\newacronym{AOFS}{AOFS}{acousto-optic frequency shifter}
\newacronym{AOM}{AOM}{acuosto-optic modulator}
\newacronym{CPA}{CPA}{chirped-pulse amplification}