目录中的问题列表(列表列表)

目录中的问题列表(列表列表)

我正在使用 Latex 编写文档。我的文档中有一组 pf 代码,我想将其显示在内容列表中。我设法做到了,但除了(代码列表)之外,表格中仍然出现了(内容)。您可以在下面找到我使用的内容:

\documentclass[11pt, oneside]{Thesis} % The default font size and one-sided printing (no margin offsets)
\begin{document}
\frontmatter % Use roman page numbering style (i, ii, iii, iv...) for the pre-content pages
\setstretch{1.3} % Line spacing of 1.3
\begin{titlepage}
\begin{center}
\lhead{\emph{Contents}} % Set the left side page header to "Contents"
\tableofcontents % Write out the Table of Contents
\lhead{\emph{List of Figures}} % Set the left side page header to "List of Figures"
\listoffigures % Write out the List of Figures
\lhead{\emph{List of Tables}} % Set the left side page header to "List of Tables"
\listoftables % Write out the List of Tables
\lhead{\emph{List of Listings}}
\addcontentsline{toc}{chapter}{Listings} %to show the listings as a chapter.
\lstlistoflistings
\end{center}
\end{titlepage}
\end{document} 

由于我有一个提交文件的最后期限,请帮我解决这个问题。

答案1

为了进一步澄清,问题是:生成的列表列表包含在目录中,因为内容代替房源列表解决方案是:第一步是添加

\renewcommand\lstlistlistingname{List of Listings}

在序言中将名称从内容房源列表,在文档中(之后\begin{document})只需包含

\addcontentsline{toc}{chapter}{\lstlistlistingname}{\lstlistoflistings}

在所需的位置。希望答案有所帮助。

相关内容