词汇表未打印在 tex 文档中

词汇表未打印在 tex 文档中

我已经使用了该包的基本命令glossaries但是使用该命令时,词汇表本身不会打印\printglossaries

使用上面链接中的 latex 代码,我无法打印词汇表。我的 latex 安装可能没有安装任何包,但经过验证,它们都已安装。有人知道这里出了什么问题吗?

\documentclass{report} 

\usepackage[style=authoryear,citestyle=authoryear,natbib=true,backend=bibtex]{biblatex}
\title{}
\author{}
\date{}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{float}
\usepackage{amsmath}
\usepackage[super]{nth}
\usepackage[utf8]{inputenc}
\usepackage{glossaries}

\makeglossaries

\newglossaryentry{latex}
{
    name=latex, 
    description={Is a markup language specially suited for scientific documents.}
}

\begin{document}
    
    \maketitle
    
    \tableofcontents

\chapter{Chapter 1}
        
\section{Text}

Lorem ipsum \gls{latex}.

\section{Glossary}

\printglossaries

\end{document}

相关内容