如何删除 \listoffigures 中的新页码?

如何删除 \listoffigures 中的新页码?

我的 tex 文档中有一个图片列表部分,我正在使用 \listoffigures

\newpage
\thispagestyle{empty}
\tableofcontents
\thispagestyle{empty}
\listoffigures
\thispagestyle{empty}
\listoftables
\thispagestyle{empty}
\newpage    
\pagenumbering{arabic}

在此处输入图片描述

这就是我想要的,但是还有一张图片,它会进入下一页并显示如下内容

在此处输入图片描述

页面底部有页码,但页码格式似乎与顶部的页码不同。我该如何避免这种情况?

答案1

做一些类似的事情

\clearpage
\pagestyle{empty}
\tableofcontents
\listoffigures
\listoftables
\cleardoublepage 
\pagestyle{fancy}
\pagenumbering{arabic}

完整示例(使用一个办法如何删除章节首页的页码以确保章节或部分页面上没有页码)我将使用:

\documentclass[a4paper,20pt]{book}
\usepackage{fancyhdr}
\usepackage{lipsum}
% Taken from https://tex.stackexchange.com/a/103610/106804
\usepackage{etoolbox}
\patchcmd{\chapter}{plain}{empty}{}{}
\patchcmd{\part}{plain}{empty}{}{}

\begin{document}
\begin{titlepage}
\lipsum[1]
\end{titlepage}
\pagestyle{empty}   
\listoffigures
\cleardoublepage
\pagenumbering{arabic}
\pagestyle{fancy}
\chapter{Some figures}
\section{Some section}
\begin{figure}[htb]Something\caption{\lipsum[1]}\end{figure} 
\begin{figure}[htb]Something\caption{\lipsum[1]}\end{figure} 
\begin{figure}[htb]Something\caption{\lipsum[1]}\end{figure} 
\begin{figure}[htb]Something\caption{\lipsum[1]}\end{figure} 
\lipsum
\end{document}

这样就不会为图表列表提供页眉或页脚,但会返回主体的正常样式(新章节或部分页面除外)。

相关内容