使用下面给出的代码,首字母缩略词部分不会出现。我正在使用 Texstudio 作为编辑器。
有人能告诉我问题出在哪里吗?
\documentclass[a4paper,12pt]{book}
\usepackage{hyperref}
\usepackage[toc, shortcuts]{glossaries}
\makeglossaries
\newacronym{CBD}{CBD}{Convention on Biological Diversity}
\newacronym{CCC}{CCC}{UN Framework Convention on Climate Change}
\newacronym{CMS}{CMS}{Convention on the Conservation of Migratory Species of Wild Animals}
\newacronym{FAO}{FAO}{Food and Agriculture Organization of the United Nations}
\begin{document}
\phantomsection
\printglossary[type=\acronymtype, style=long, toctitle={Acronyms}, title={Acronyms}]
\cleardoublepage
\chapter{chapter1}
\ac{CBD}
\ac{CCC}
\ac{CMS}
\ac{FAO}
\end{document}