词汇表不适用于 latexmk

词汇表不适用于 latexmk

我的词汇表在 glossary.tex 中

我总是将它们输入到 main.tex 然后输入到 /makeglossaries 然后输入到 /printglossaries

我在 Windows 上使用 atom IDE。当我运行 latex 编译时,即使我使用了词汇表,也无法在生成的 pdf 文件中看到它们。

以下是主文件的代码:

\documentclass[11pt,
              a4paper,
              index=totoc,
              headsepline,
              footsepline,
              BCOR=12mm,
              DIV=13]{scrbook}

\input{components/info}

\input{components/settings}

\input{components/commands}

\input{components/glossary}

\makeglossary

\begin{document}

 \frontmatter

 \input{components/cover}

 \clearemptydoublepage

 \input{components/titlepage}

 \input{components/disclaimer}

 \input{components/acknowledgements}

 \input{components/quote}

 \input{components/abstract}

 \tableofcontents

 \mainmatter

 \input{components/text}

 \clearemptydoublepage

 \printglossaries

 \addcontentsline{toc}{chapter}{List of Figures}
 \listoffigures

 \addcontentsline{toc}{chapter}{List of Tables}
 \listoftables

 \addcontentsline{toc}{chapter}{Bibliography}
 \bibliography{bibliography/literature}

\end{document}

您有什么线索可以解决该问题吗?

相关内容