每章后都有空白页?

每章后都有空白页?

每章之后我都会有一个空白页(没有任何页眉或页脚)。我不明白为什么。我希望有人能帮助我!非常感谢!

\documentclass[a4paper, fontsize=11pt]{scrbook}
\usepackage{geometry} \geometry{a4paper, top=25mm, left=25mm, right=25mm, bottom=25mm, footskip=10mm} % Seitenlayout
%headsep=7mm, footskip= 7mm
\addtokomafont{disposition}{\rmfamily} % Inhaltsverzeichnis in Times

\usepackage[ngerman]{babel}  % Deutsche Sprachanpassung
\usepackage[T1]{fontenc}         % Silbentrennung bei Sonderzeichen
\usepackage[latin1]{inputenc}   % Direkte Angabe von Umlauten im Dokument
\usepackage{csquotes}             % Apostroph-Zeichen

\usepackage[onehalfspacing]{setspace} % Zeilenabstand 

\usepackage{acronym}     % Sonstiges
\usepackage{anyfontsize} % Sonstiges

%Header und Footer
\usepackage{fancyhdr}
\pagestyle{fancy}

\renewcommand{\chaptermark}[1]{\markboth{#1}{}}

\fancyhf{} % clear the headers
\fancyhead[R]{%
   % We want italics
   \itshape
   % The chapter number only if it's greater than 0
   \ifnum\value{chapter}>0 \thechapter \hspace{0.01cm} \fi
   % The chapter title
   \leftmark}
\fancyfoot[C]{\thepage}

\fancypagestyle{plain}{
  \renewcommand{\headrulewidth}{0pt}
  \fancyhf{}
  \fancyfoot[C]{\thepage}
}

\setlength{\headheight}{14.5pt}

\begin{document}

\tableofcontents
\addcontentsline{toc}{chapter}{Abbildungsverzeichnis}
\listoffigures\vfill
\addcontentsline{toc}{chapter}{Tabellenverzeichnis}
\listoftables\vfill

\chapter{test}
\chapter{test}

\addcontentsline{toc}{chapter}{Literaturverzeichnis}
\nocite{*}
\bibliographystyle{plain}
\bibliography{lit}

\end{document}

答案1

默认情况下,scrbook章节总是从奇数页(即双面打印时的右侧)开始。使用该选项open=any可让章节也从偶数页开始。

\documentclass[
   open = any,
]{scrbook}

\begin{document}

\chapter{Chapter Heading}
Text

\chapter{Chapter Heading}
Text

\chapter{Chapter Heading}
Text

\end{document}

相关内容