书的双面标题不正确

书的双面标题不正确

在单面书上完成论文后,我将其改为双面书,Latex 添加了额外的页面,这样章节总是从偶数页开始。参见下面的代码;但是以目录为例,前两页显示正确的标题,即“目录”,然后 Latex 添加的下一页和额外的页面显示下一章的标题“图表列表”(参见下图)。

在此处输入图片描述

\addcontentsline{toc}{chapter}{Contents}
\lhead{\emph{Contents}}
\tableofcontents

% list of figures
\addcontentsline{toc}{chapter}{List of Figures}
\lhead{\emph{List of Figures}}
\listoffigures

% list of tables
\addcontentsline{toc}{chapter}{List of Tables}
\lhead{\emph{List of Tables}}
\listoftables

这是我的序言的一部分\documentclass[12pt,a4paper,twoside]{book} \usepackage{fancyhdr}

答案1

您需要openany在文档类中使用该选项,例如,\documentclass[12pt,a4paper,twoside,openany]{book}以防止插入多余的页面。

相关内容