使用 lstlistoflistings 时目录中出现重复条目​​

使用 lstlistoflistings 时目录中出现重复条目​​

嗨,我正在用 latex 写论文,我已经使用该lstlisting包编写了一些代码示例。然后我使用命令\lstlistoflistings在论文开头添加了所有示例,但在论文的开头toc我有另一个名为 的条目contents在此处输入图片描述 在我的论文的 main.tex 中,我有renew一些命令可以更改意大利语文本。这里有代码:\documentclass[11pt, oneside]{Thesis} % 默认字体大小和单面打印(无边距偏移)

   \usepackage[square, comma, sort&compress]{natbib}
   \usepackage{csvsimple}
   \usepackage{listing}
   \usepackage{listings}
   \usepackage{color}
   \usepackage{hyperref}
   \usepackage{wrapfig}

   \renewcommand\contentsname{Contenuti}
   \lhead{\emph{Contenuti}} 
   % Set the left side page header to "Contents"
   \tableofcontents % Write out the Table of Contents

   \renewcommand\listfigurename{Lista delle Figure}
   \lhead{\emph{Lista delle Figure}} 
   % Set the left side page header to "List of Figures"
   \listoffigures % Write out the List of Figures

   \renewcommand\listtablename{Lista degli Tabelle}
   \lhead{\emph{Lista delle Tabelle}} 
   % Set the left side page header to "List    of Tables" 
   \listoftables % Write out the List of Tables

   \renewcommand\lstlistlistingname{Lista degli Esempi}
   \lhead{\emph{Lista degli Esempi}}
   \addcontentsline{toc}{chapter}{\lstlistlistingname}
   \lstlistoflistings

我如何从目录中删除突出显示的内容条目?

完整代码在这里:https://www.overleaf.com/2099409mzswhq#/5337501/

答案1

解决方案是:Thesis.cls从@Jonas Nyrup 发布的原始模板中复制原始内容并替换我实际项目中的模板。然后我重新配置它,调整一些命令(在这个模板上你必须填写关于你的大学和其他东西的数据)。

原始模板:https://web.archive.org/web/20140911175029/http://www.sunilpatel.co.uk/wp-content/uploads/2010/08/Thesis-Template.zip

我的论文:https://www.overleaf.com/2099409mzswhq

相关内容