The report I'm writting features a lot of long, multiple lines equations. To reduce visual polution I've been using an aligned environment nested inside equation. This way (unlike just using an align environment) I get only a single label for all the lines.
The problem is that so many long equations often need to be broken into two pages, otherwise I get lots of blank vertical space in the document. However the aligned environment does not allow the \displaybreak command.
Is there an alternative way to achieve a pagebreak inside an aligned equation?
Here's a sample ofthe equations I'm using
\begin{equation}
\begin{aligned}
...\\
...\\ %I need to pagebreak here
...\\
\end{aligned}\end{equation}
splitenvironment? – Stephan Lehmke Apr 12 '12 at 18:05\begin{equation}\begin{aligned}: Would\begin{align}...\notag \\ \label{where you want it} \\ \end{align}(or thesplitenvironment as mentioned by Stephan Lehmke) be a possible alternative for you? – Stephen Apr 12 '12 at 18:09align+\notagseems like a good idea. I wasn't using it because that would involve managing dozens of\notags. But I suppose I could use it only on the problematic equations. – Malabarba Apr 12 '12 at 21:15\tagonce rather than the unstarred form and use\notagon all but one line – David Carlisle Apr 12 '12 at 22:22