For reasons I won't bore anyone with, I being forced to change my document at the last minute from oneside to twoside using memoir. However, when I do, I suddenly get odd problems with spacing; the title pages have the entire page's text shifted to the bottom, and the last subsection or paragraph in each chapter is moved to the bottom of the page as well (leaving a huge chunk of vertical whitespace between the last and the penultimate paragraph). I'm sorry, I'd like to provide a minimal working example, but I can't come up with one, so I'm just hoping that someone can point me in the direction of general things to check. Here's some possibly relevant code, though it's a long document:
\documentclass[12pt,A4,twoside]{memoir}
\setcounter{errorcontextlines}{30}
\strictpagecheck
\usepackage[sectionbib]{natbib}
\usepackage{chapterbib}
\usepackage{graphicx}
\usepackage{amsthm}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{authblk}
\usepackage{multirow}
\usepackage{memhfixc}
\usepackage[draft]{hyperref}
\usepackage{lscape}
\usepackage[T1]{fontenc}
\bibpunct[, ]{(}{)}{;}{a}{}{;}
\setlrmarginsandblock{4cm}{3cm}{*}
\setulmarginsandblock{4cm}{3cm}{*}
\checkandfixthelayout
\fixpdflayout
\makepagestyle{mystyle}
\makeoddhead{mystyle}{}{}{\thepage}
\makeevenhead{mystyle}{\thepage}{}{}
\pagestyle{mystyle}
...
\cleartooddpage[\thispagestyle{empty}]
\include{foreword}
\pagestyle{plain}
\mainmatter
\cleartooddpage[\thispagestyle{empty}]
\include{chap1}
...
and so on.
\raggedbottomto your preamble. – lockstep Nov 10 '11 at 6:35