只有最后第 6 章没有第 5 章和参考书目空白页

只有最后第 6 章没有第 5 章和参考书目空白页
\documentclass[12pt,a4paper,twoside,openright]{report}
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage{subfigure}
\usepackage{afterpage}
\usepackage{amsmath,amssymb}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage[skins]{tcolorbox}        
\usepackage{rotating}  
\usepackage{mathtools}
%\newcommand\floor[1]{\lfloor#1\rfloor}
\usepackage[section]{placeins}
\usepackage{fancyhdr}  
\usepackage[scriptsize]{caption} 
\usepackage{tabu}

\usepackage{todonotes}

\usepackage[setpagesize=false]{hyperref}

\hyphenation{a-gen-tiz-za-zio-ne}

\setlength{\paperwidth}{21cm}
\setlength{\paperheight}{29.7cm}
\setlength{\oddsidemargin} {2. cm}
\setlength{\evensidemargin} {2. cm}
\addtolength{\oddsidemargin} {-0.4 cm}
\addtolength{\evensidemargin} {-0.4 cm}

\setlength{\parindent}{2em}
\setlength{\parskip}{1em}
\renewcommand{\baselinestretch}{1.5}
\linespread{1.1}

\usepackage[italian,english]{babel}
\usepackage[latin1,utf8]{inputenc}
\renewcommand{\captionfont}{\normalfont \sffamily \itshape \small}
%---throrem
\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}{Corollary}[theorem]
\newtheorem{lemma}[theorem]{Lemma}
\pagestyle{empty}

\begin{document}
\include{cover}
\thispagestyle{empty} \normalfont \cleardoublepage
\pagenumbering{arabic}
\include{abstract}
\thispagestyle{empty} \vspace*{.75truecm} \cleardoublepage
\include{thanks}
\thispagestyle{empty} \vspace*{.75truecm} \normalfont \cleardoublepage
\pagestyle{plain}\renewcommand{\chaptermark}[1]{\markboth{\chaptername\ 
\thechapter.\ #1}{}} 
\renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}}         
\fancyhead[LE,RO]{\bfseries\thepage}    

\fancyhead[RE]{\bfseries\leftmark}    
\fancyhead[LO]{\bfseries\rightmark}     
\renewcommand{\headrulewidth}{0.3pt} 

\tableofcontents
\listoffigures
\listoftables

\include{chapter1} 
\include{chapter2} 
\include{chapter3} 
\include{chapter4} 
\include{chapter5}
\include{chapter6}



\cleardoublepage
% ---- Bibliography ----
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{ieeetr}
\bibliography{biblio}
%\nocite{*}

\appendix

\pagestyle{fancy} 
\fancyfoot{}                                               
\renewcommand{\chaptermark}[1]{\markboth{\appendixname\ \thechapter.\ #1}{}} 
\renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}}         
\fancyhead[LE,RO]{\bfseries\thepage}    

\fancyhead[RE]{\bfseries\leftmark}    
\fancyhead[LO]{\bfseries\rightmark}     
\renewcommand{\headrulewidth}{0.3pt} 

\end{document}

答案1

openright我怀疑这种行为是由选项和的组合引起的\cleardoublepage

如果没有实际来源就很难验证,但是第六章是否在偶数页结束,而其他章节在奇数页结束?

openright选项确保每个章节都从右侧(奇数)页面开始。

该命令\doublepage具有以下行为(重点是我的):

\cleardoublepage命令结束当前页面,并打印输入中迄今为止出现的所有图形和表格。在双面打印样式中,它还会使下一页成为右侧(奇数)页面,如果必要的话,制作一张空白页。

例如\doublepage 仅有的在必要时创建一个空白页。

当我使用一些随机输入编译您的章节来源时,这是我所看到的行为,也是该openright选项的预期行为。

如果你真的想插入一个空白页,你可以看看这里

相关内容