嗨,我正在用 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
我如何从目录中删除突出显示的内容条目?
答案1
解决方案是:Thesis.cls
从@Jonas Nyrup 发布的原始模板中复制原始内容并替换我实际项目中的模板。然后我重新配置它,调整一些命令(在这个模板上你必须填写关于你的大学和其他东西的数据)。