我有目錄,我使用glossaries
包來製作我的詞彙表。在我的程式碼中的某個時刻,我有\printglossary[type=glossarytype]
列印術語表的命令。問題是我的目錄中的術語與我的章節(已編號)不一致。我需要在目錄中的術語表條目左側留出一點空間,通常在此處放置章節號。
答案1
使用套件選項numberline
(除了toc
)。
\documentclass{report}
\usepackage[toc,numberline]{glossaries}
\makeglossaries
\newglossaryentry{electrolyte}{name=electrolyte,%
description={solution able to conduct electric current}}
\begin{document}
\tableofcontents
\chapter{foo}
Some text about \gls{electrolyte}.
\printglossaries
\end{document}
答案2
如果你必須這樣,我想你可以[toc]
從套件聲明中刪除;建立一個名為「詞彙表」的新章節\printglossary[type=glossarytype]
。可能有一個“更好”的方法,但這對你來說是可行的。