我想在文档末尾自动生成一个词汇表,但以下代码不起作用。实际上没有创建任何词汇表。我在 Mac TexLive 环境中使用 XeLaTeX 编译 tex 文件。
以下是代码:
\documentclass[oneside, a4paper,12pt]{book}
\usepackage[xindy]{glossaries}
\makeglossaries
\begin{document}
\include{glossary}
He has a \gls{computer}.
\appendix
\bibliographystyle{plainnat}
\bibliography{bibtex}
\printglossaries
\end{document}
glossary.tex 文件包含:
\newglossaryentry{computer}
{
name=computer,
description={is a programmable machine that receives input, and provides output in a useful format}
}
在此先感谢您的帮助。