我正在尝试使用词汇表,但它不显示标题,只显示一些术语。尝试尽可能缩小我的文档
\documentclass[12pt,twoside]{report}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{csquotes}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage[style=authoryear,sorting=ynt]{biblatex}
\addbibresource{references.bib}
\usepackage[toc]{glossaries}
\makeglossaries
\newglossaryentry{term}{name={Term},plural={terms},description={A special word}}
\begin{document}
This is a special \gls{term}.
\printglossary[title=List of Terms,toctitle=Terms and Abbreviations]
\end{document}