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}
split
environment?\begin{equation}\begin{aligned}
: Would\begin{align}...\notag \\ \label{where you want it} \\ \end{align}
(or thesplit
environment as mentioned by Stephan Lehmke) be a possible alternative for you?align
+\notag
seems like a good idea. I wasn't using it because that would involve managing dozens of\notag
s. But I suppose I could use it only on the problematic equations.\tag
once rather than the unstarred form and use\notag
on all but one line