使用 XeLaTeX 自动生成词汇表的问题

使用 XeLaTeX 自动生成词汇表的问题

我想在文档末尾自动生成一个词汇表,但以下代码不起作用。实际上没有创建任何词汇表。我在 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}
}

在此先感谢您的帮助。

答案1

尝试一下词汇表包。文档非常好。您已经拥有它了,但请参阅词汇表了解描述。本指南针对初学者完整的用户手册解释更高级的用法。正如初学者指南所解释的那样,您用来指定目标单词的命令取决于您希望它在文本中如何显示。

相关内容