我正在尝试让词汇表一词作为标题出现在打印词汇表的页面上,其方式与索引词生成索引词的方式相同。后者是自动生成的,但前者不是。我正在使用 TexStudio,并使用工具编译两次 F5,然后按 F9 运行词汇表,然后按 F5 两次,这是推荐的。我遗漏了什么?
\documentclass[a4paper,twoside,openright,12pt]{memoir}
\usepackage{glossaries}
\usepackage{imakeidx}
\makeindex
\makeglossary
\newglossaryentry{cabbage}{name=Cabbage,description={Green vegetable often over cooked}}
\begin{document}
Word to add to Glossary \gls{cabbage}.
Word to add to index\index{bacon} bacon.
\printglossary
\printindex
\end{document}