Posso quebrar automaticamente um grande número de equações no mesmo subequation
ambiente? Tenho que colocá-los em um apêndice e não posso alterar continuamente onde os align
grupos 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 \allowdisplaybreaks
comando colocado no preâmbulo do seu documento.
Observe que este comando não pode ser usado em ambientes split
, aligned
, gathered
e . alignedat
VeraquiPara maiores informações.
\documentclass[11.5pt,a4paper ]{amsart}
\usepackage{lipsum}
\usepackage{latexsym,amssymb,enumerate}
\usepackage[english]{babel}
\allowdisplaybreaks % <----------
\begin{document}
...
\end{document}