一些章节标题之后,文档在正文之前留空一页

一些章节标题之后,文档在正文之前留空一页

首先,我的问题不是在一章的结尾,即章节标题,页面是空的(例如https://stackoverflow.com/questions/1358694/latex-remove-blank-page-after-a-part-or-chapter) 是由 'twoside' 选项引起的。我已使用 'oneside' 选项测试了我的问题,但问题仍然存在。


所以我的实际问题是,在我的文档中(我需要使用的自定义模板,基于 KOMA-Script 类 scrbook。我检查了类文件,但找不到任何东西。)在某个时候,页面的其余部分在章节标题后是空的,文本只从下一页(偶数页)开始。奇怪的是,这种行为并不是在所有章节中都一致的,而是在第 3 章之后开始的。我仅使用“lipsum”段测试了我的代码,以确保没有奇怪的数字或表格是罪魁祸首,但这并没有解决问题。

\documentclass[
  a4paper,            % paper size (a4paper, a5paper)
  english,            % define the document language (english, german)
  twoside,            % use onesided or twosided layout (oneside, twoside)
]{tumbook}            % document class I have to use
\begin{document}

\frontmatter
\maketitle
\chapter{Abstract}
\input{chapters/abstract.tex}
\tableofcontents

\mainmatter
\chapter{Introduction}
\input{chapters/intro.tex}

\chapter{Theory}
\input{chapters/theory.tex}

\chapter{Data Sample}
\input{chapters/datasample.tex}

\chapter{Methods}                       % The problem starts here
\include{chapters/methods.tex}

\chapter{Results}
\include{chapters/results.tex}

\appendix
\chapter{Appendix}
\include{chapters/appendix.tex}

\backmatter

\printbibliography

\end{document}

所包含的各个文件都使用以下形式的虚拟内容进行了测试

\lipsum[1]

\section{A section}
\lipsum[2]

\section{Another section}
\lipsum[3]

我不指望任何人都有最终的解决方案,因为问题很可能出在自定义文档类上,但我想知道是否有人可以给我一些指点,告诉我问题可能出在哪里。

答案1

前三章是\input正文。其余部分是\include正文。\include总是从新一页开始。一直使用就好\input

相关内容