I have the following MWE, using REVTeX:
\documentclass[aps, prl, twocolumn]{revtex4-1}
\begin{document}
\title{Title}
\author{Dog}
\date{\today}
\begin{abstract}
\include{abstract}
\end{abstract}
\maketitle
\include{text}
\end{document}
When I use \include, then the page is skipped before inserted text. When I just write the directly without using \include, then the text is placed there as expected, without any \newpage.
Why is that?
\includealways does\clearpage. Use\input. – egreg Jun 04 '13 at 13:08