为 \listoflistings 添加一章

为 \listoflistings 添加一章

我花了一段时间才让它\listoflistings工作起来。我使用 minted 插入如下代码示例:

\begin{listing}[H]
\inputminted[mathescape,linenos,frame=single,resetmargins=true]{js}{code/local-storage-sample.txt}

\caption{Enhancement for the LocalStorage to directly store \& retrieve \acf{JS}-Objects }
\label{code:ls-sample}
\end{listing}

在我的论文最后我有:

\clearpage\listoffigures
\clearpage\listoftables

% Das Quellcodeverzeichnis
\chapter{List of Listings}
\renewcommand{\listoflistings}{%
  \cleardoublepage
  \addcontentsline{toc}{chapter}{\listoflistingscaption}%
  \listof{listing}{\listoflistingscaption}%
}
\listoflistings

从样式和所有方面来看,这都符合我的需要,但我只需要再做一件事:将\listoflistings作为“列表列表”添加到目录中,无需使用,\chapter或者告诉 ListOfListings 不使用标题。

我希望有一个人可以帮助我。

相关内容