嗨,我正试图在我的文件中得到缩略语,但我一直未能做到这一点。
\documentclass{scrbook}
\usepackage[acronym]{glossaries}
\makeglossaries
\begin{document}
\mainmatter
\printglossary[type=\acronymtype]
\include{ch1}
end{document}我的缩略语代码在章节文件中
\chapter{ch1}
\acrfull{WLAN} is used as a trial for my example and problem
\newacronym{wlan}{WLAN}{Wireless Local Area Network}发布于 2022-11-30 10:46:01
您正在定义首字母缩略词wlan,但您使用的是缩略词WLAN。决定你想要的两个中的哪一个,并保持一致:
\documentclass{scrbook}
\usepackage[acronym]{glossaries}
\makeglossaries
\begin{document}
\mainmatter
\printglossary[type=\acronymtype]
\chapter{ch1}
\acrfull{WLAN} is used as a trial for my example and problem
\newacronym{WLAN}{WLAN}{Wireless Local Area Network}
\end{document}

https://stackoverflow.com/questions/74626402
复制相似问题