Kann ich bei einer großen Anzahl von Gleichungen in derselben -Umgebung automatisch einen Seitenumbruch vornehmen subequation
? Ich muss sie in einen Anhang einfügen und kann nicht kontinuierlich ändern, wo die align
-Gruppen beginnen und enden. Dies führt dazu, dass der Anhang auf einer neuen Seite beginnt und, schlimmer noch, manchmal auch mit einer leeren Seite davor.
Die Ausrichtungsgruppen wirken unnatürlich, aber ich muss sie erstellen, damit ein Seitenumbruch erfolgt. Könnte dies automatisch erfolgen?
\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}
Antwort1
\allowdisplaybreaks
Mit dem Befehl in der Präambel Ihres Dokuments lässt sich das Problem ganz einfach beheben .
split
Beachten Sie, dass dieser Befehl nicht in den Umgebungen , aligned
, gathered
und verwendet werden kann alignedat
. SieheHierfür mehr Informationen.
\documentclass[11.5pt,a4paper ]{amsart}
\usepackage{lipsum}
\usepackage{latexsym,amssymb,enumerate}
\usepackage[english]{babel}
\allowdisplaybreaks % <----------
\begin{document}
...
\end{document}