I have the following files:
Thesis.tex
\documentclass{scrreprt}
\usepackage[english]{babel}
\usepackage{blindtext}
\newcommand{\bflabel}{\aclabelfont}
\input{classicthesis-config}
\begin{document}
\chapter{Introduction}
\include{input}
\end{document}
input.tex
\blindtext
classicthesis-config.tex
... copied from the distribution ...
When I put \chapter before the \include, what I get is this:
Instead, when I move \chapter{Introduction} to intput.tex, I get this:
I wonder why this is the case.


\chapter{Introduction}is in the main file, not in the included file (see edited question). – oarfish Aug 05 '15 at 16:35\includemakes a clearpage – Johannes_B Aug 05 '15 at 16:36\includealways forces a new page. the\chapterline should be in the\included file. (this must have been asked before. i'll go looking.) – barbara beeton Aug 05 '15 at 16:37\bibliography{mybib}{}, it does not matter where the\chapter{References}is located, it always puts the bibliography on a separate page. Why is that? – oarfish Aug 06 '15 at 12:59