
使用下面給出的程式碼,縮寫詞部分不會出現。我正在使用 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}