不要在目录中显示词汇表

不要在目录中显示词汇表

我希望词汇表在目录中消失

我的代码是

\documentclass{scrartcl}
\usepackage[T1]{fontenc}
\usepackage{tgtermes}
\usepackage{siunitx}
\usepackage[hidelinks]{hyperref}
\usepackage[nopostdot=false,
 stylemods=longragged,
 style=longragged3col,
 nogroupskip
]{glossaries-extra}

\setkomafont{disposition}{\normalcolor\bfseries}
\setlength{\glspagelistwidth}{0.12\textwidth}
\makeglossaries
\newglossaryentry{||.||}{name =  {$||.||$},
  description={Norm}}
  
\newcommand*{\glsxtrpostdescforeignenddot}{\space
 (Translation: \glsentryuseri{\glscurrententrylabel})}
\GlsXtrEnablePreLocationTag{}{}

\begin{document}

\tableofcontents

\gls{||.||}

\printglossaries

\end{document} 

答案1

glossaries-extra默认情况下具有包选项toc=true,它将词汇表添加到目录中。包装文档说:

用于toc=false关闭此功能。

因此请添加toc=false到您的\usepackage[...]{glossaries-extra}

相关内容