我的词汇表未显示在屏幕上

我的词汇表未显示在屏幕上

我把完整的项目分成不同的文件,主要文件代码是:

\documentclass[12pt,a4paper,oneside]{report}
\usepackage{tfg/mi_estilo}

\makeglossaries
%-------------------------------------------
\input{tfg/glossary.tex}
\begin{document}
    %---------------------------------------
    \input{tfg/1_portada}
    %---------------------------------------
    \input{tfg/encabezado}
    %---------------------------------------
    \tableofcontents
    \listoffigures
    \clearpage
    \printglossary
    \clearpage
    \printglossary[type=\acronymtype]
    \clearpage
    %---------------------------------------
    \input{tfg/2_memoria}
    \printbibliography
    \input{tfg/3_anexos}
    %---------------------------------------

\end{document}

我有一个名为 glossary.tex 的文件,我在其中编写了想要出现在词汇表中的单词的代码。我遵循了 overleaf 的指南:https://www.overleaf.com/learn/latex/Glossaries但是当我编译时,在使用命令 \gls 或 \Gls 提及文本中的单词后,词汇表并没有出现在我的项目中。

相关内容