可能重复:
使用 \include 进行分页
我正在使用 Report 文档类,为了管理文档,我将其分成几个单独的 .tex 文件,这些文件在主文档中编译。主文档包含前言材料,开头如下:
\documentclass[a4paper,12pt,twoside]{report}
\includeonly{MF2_Formal_RPT_Cover&Title,CommonwealthDisclaimer,InstructionsForReaders,SignaturePage}
然后我使用以下内容包含各个报告部分:
\begin{document}
\include{MF2_Formal_RPT_Cover&Title}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Prefatory pages for the report %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\include{CommonwealthDisclaimer}
\include{InstructionsForReaders}
\include{SignaturePage}
\end{document}
当我编译文档时,每个新包含的文件之间都会插入一个空白页。我检查了每个文件,它们没有以分页符或类似内容结尾。我该如何停止包含额外的空白页?
答案1
使用\input
而不是\include
。