我使用这个技巧仅当我的文档中至少有一个图形时才显示图形列表:
\ifnum\value{figure}>0
\listoffigures
\newpage
\fi
有没有办法用glossaries
-package 来做到这一点?
\usepackage[
acronym=true,
toc
]{glossaries}
\makeglossary
[...]
\glsaddall
\printglossary[
type=\acronymtype,
title=Foo,
numberedsection,
nonumberlist
]
[...]
\glsaddall
\renewcommand*{\glspostdescription}{}
\printglossary[
title=Glossary,
numberedsection,
nonumberlist
]
我考虑为\newacronym
和\newglossaryentry
命令定义包装器命令并将布尔变量设置为 true。