我在开始章节之前使用\listoftables
。但是在章节标题中出现了表格列表。
如何才能将其除去?
答案1
\markboth{}{}\cleardoublepage
之后尝试\listoftables
\documentclass{book}
\begin{document}
\tableofcontents
\listoftables
\markboth{}{}
\cleardoublepage
\chapter{Foo}
\begin{table}
\caption{This is my table}
\end{table}
\end{document}