如何从页面标题中删除 \listoffigures

如何从页面标题中删除 \listoffigures

我正在使用 texmaker 撰写论文,我的问题如下:从我的 pdf 文件的屏幕截图中可以看到,在第一页标题为“Introduzione”(简介)之后,第二页的页眉上写的是“Elenco delle figure”(意大利语图表列表),而不是“Introduzione”。我找不到更改它的方法。您可以在下面找到所有使用的包和相关命令。这是我第一次在这个论坛上提问,所以如果您需要更多信息或者我做错了什么,请告诉我。

谢谢大家!

在此处输入图片描述

\documentclass[12pt,a4paper,oneside, titlepage]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,italian]{babel}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{supertabular}
\usepackage{indentfirst}
\usepackage{hyperref} 
\usepackage{fancyhdr}
\hypersetup{linktocpage,colorlinks=false}
\pagestyle{fancy}\addtolength{\headwidth}{20pt} 
 \renewcommand{\chaptermark}[1]{\markboth{\thechapter.\ #1}{}} 
 \renewcommand{\sectionmark}[1]{\markright{\thesection \ #1}{}} 
 \cfoot{} 

 \rhead[\fancyplain{}{\bfseries\leftmark}]{\fancyplain{}{\bfseries\thepage}} 
 \lhead[\fancyplain{}{\bfseries\thepage}]{\fancyplain{}{\bfseries\rightmark}} 

\makeatletter
\def\cleardoublepage{\clearpage\if@twoside \ifodd\c@page\else
\hbox{}
\thispagestyle{empty}
\newpage
\if@twocolumn\hbox{}\newpage\fi\fi\fi}

\begin{document}

\clearpage
\tableofcontents
\listoffigures
\mainmatter
\clearpage
\addcontentsline{toc}{chapter}{Introduzione}

相关内容