[Tex/LaTex] Remove unnecessary page before bibliography

double-sidedpage-breaking

I'm writing a thesis which is an aggregate of articles. In one article, there's a blank unnecessary page that appears between the final lines of my document and the bibliography when I put it in the thesis. I don't get this behavior when I compiled the article separately with article class. I've tried commands like \vspace{-10cm} but to no avail. The extra page is still here. How to get rid of this page?

The thesis is a compilation of articles with each article having its own bibliography. And I'm using \include to include each article. Each article has its own \bibliography command at the end.

Thanks a lot…

updated information:
I'm using the chapterbib package to put the multiple bibliographies. And the documentclass is set as:

\documentclass[fleqn,a4paper,twoside,11pt]{book}

I don't have openright option. I'm fixing this myself with adding a blank page as necessary.

I'm putting each article as:

\begingroup

\renewcommand{\appendix}{%
\par
\setcounter{section}{0}%
\renewcommand{\thesection}{\thechapter.\Alph{section}}%
}

\input{article1}

\endgroup

See also this link:
Getting correct section numbering for Appendix in a large document

Best Answer

Try to explicitly give the openany option for your document class. My guess is that, even if you didn't specify it, your document class is using a default of openright.