I'm working on a thesis using the report class and I'm having an interesting problem when I use the twoside option. I've recreated the problem in the working example below.
The issue is that in twoside, it seems to add vertical space around the section header in order to fill the page. If you run the same example without the twoside option, the line spacing is normal and the extra space falls at the end of the page, which is desirable in my case. What is causing the difference and is there a way to use the twoside option without this occurring?
Thanks very much,
LC
Code: Select all
%\documentclass[12pt]{report}
\documentclass[12pt,twoside]{report}
\usepackage{amsmath}
\begin{document}
\rule{4in}{4in}
\subsection{Stability}
At time $t=\tau_1$ the trajectory reaches the first surface,
$s_1=0$, after which $x_1$ and $x_5$ approach the origin asymptotically.
At time $t=\tau_2$ the trajectory reaches the third and fourth
surfaces, $s_3=s_4=0$. This implies that it has simultaneously
reached the second surface, $s_2=0$, since $s_2$ is proportional
to the product of $x_5$ and $s_2$ and $x_5\rightarrow0$ only
asymptotically. Hence, the trajectory reaches all surfaces in
finite time after which the sliding phase starts. During the
sliding phase, the dynamics can be re-derived using
$s_1=0\Rightarrow x_5=-\lambda x_1$, $s_2=0\Rightarrow x_6=-bx_2$,
and $s_3=0\Rightarrow x_4=-d_rx_3$
\begin{equation}
\begin{aligned}
\dot{x}_1 &= x_5 \\
\dot{x}_2 &= -bx_2-\lambda x_1x_3 \\
\dot{x}_3 &= -d_rx_3+\lambda x_1x_2 \\
\dot{x}_4 &= -d_rx_4-d_r\lambda x_1x_2 \\
\dot{x}_5 &= -\lambda x_5 \\
\dot{x}_6 &= -bx_6+b\lambda x_3x_1.
\end{aligned}
\end{equation}
\end{document}