Possible Duplicate:
Page break with \include
I am using the Report document class and to manage the document i have divided it into seperate .tex files that are compiled within a main document. The main document contains the prefatory material and begins as follows:
\documentclass[a4paper,12pt,twoside]{report}
\includeonly{MF2_Formal_RPT_Cover&Title,CommonwealthDisclaimer,InstructionsForReaders,SignaturePage}
I then include the various report parts using:
\begin{document}
\include{MF2_Formal_RPT_Cover&Title}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Prefatory pages for the report %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\include{CommonwealthDisclaimer}
\include{InstructionsForReaders}
\include{SignaturePage}
\end{document}
When I compile the document a blank page is being inserted between each new included file. I have checked each file and they do not finish with a page break or similar. How can I stop the inclusion of the extra blank pages?