¿Puedo hacer saltos de página automáticamente en una gran cantidad de ecuaciones en el mismo subequation
entorno? Tengo que ponerlos en un apéndice y no puedo cambiar continuamente dónde align
comienzan y terminan los grupos. Como resultado, el apéndice comienza en una página nueva y, peor aún, a veces también con una página en blanco delante.
Los grupos de alineación parecen antinaturales, pero tengo que crearlos para que se produzca el salto de página. ¿Podría lograrse esto automáticamente?
\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}
Respuesta1
Es una solución simple usando el \allowdisplaybreaks
comando ubicado en el preámbulo de su documento.
Tenga en cuenta que este comando no se puede utilizar en entornos split
, aligned
, gathered
y . alignedat
Veraquípara más información.
\documentclass[11.5pt,a4paper ]{amsart}
\usepackage{lipsum}
\usepackage{latexsym,amssymb,enumerate}
\usepackage[english]{babel}
\allowdisplaybreaks % <----------
\begin{document}
...
\end{document}