Grande número de equações em um ambiente de subequação. Evite nova página com página em branco anterior

Grande número de equações em um ambiente de subequação. Evite nova página com página em branco anterior

Posso quebrar automaticamente um grande número de equações no mesmo subequationambiente? Tenho que colocá-los em um apêndice e não posso alterar continuamente onde os aligngrupos começam e terminam. Como resultado, o apêndice começa em uma nova página e, pior, às vezes também com uma página em branco antes dele.

Os grupos de alinhamento não parecem naturais, mas tenho que criá-los para que ocorra a quebra de página. Isso poderia ser alcançado automaticamente?

\documentclass[11.5pt,a4paper ]{amsart}

\usepackage{lipsum} 
\usepackage{latexsym,amssymb,enumerate}
\usepackage[english]{babel}

\begin{document} 

\section{First Section}
\lipsum[1]
\lipsum[2]

\appendix
\section{Long proof that nobody wants to read}
\begin{subequations}
\begin{align}
\mbox{long } &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long } &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long } &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long } &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long } &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long } &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long } &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long } &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long } &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long } &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long } &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber 
\end{align} 
\begin{align}
\mbox{new block with a} &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long} &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber 
\mbox{new block with a} &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long} &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber 
\mbox{new block with a} &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber \\
\mbox{long} &   \mbox{list}  \\
\mbox{of} & \mbox{equations} \nonumber \\
\mbox{which } & \mbox{I cannot suppress} \nonumber 
\end{align} 
\end{subequations}   

\end{document}

Responder1

É uma solução simples usando o \allowdisplaybreakscomando colocado no preâmbulo do seu documento.

Observe que este comando não pode ser usado em ambientes split, aligned, gatherede . alignedatVeraquiPara maiores informações.

\documentclass[11.5pt,a4paper ]{amsart}
\usepackage{lipsum} 
\usepackage{latexsym,amssymb,enumerate}
\usepackage[english]{babel}

\allowdisplaybreaks % <----------

\begin{document} 
...
\end{document}

insira a descrição da imagem aqui

informação relacionada