答案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}
这样就不会为图表列表提供页眉或页脚,但会返回主体的正常样式(新章节或部分页面除外)。