동일한 환경에서 많은 수의 방정식을 자동으로 페이지 분할할 수 있습니까 subequation
? 부록에 넣어야 하는데 align
-groups의 시작과 끝 위치를 계속해서 변경할 수는 없습니다. 결과적으로 부록은 새 페이지에서 시작되고, 더 나쁜 경우에는 앞에 빈 페이지가 하나 있는 경우도 있습니다.
정렬 그룹이 부자연스러워 보이는데 페이지 나누기가 일어나도록 만들어야 합니다. 이것이 자동으로 달성될 수 있습니까?
\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}
답변1
\allowdisplaybreaks
문서의 서문에 있는 명령을 사용하여 간단히 해결할 수 있습니다 .
split
이 명령은 , aligned
, gathered
및 환경 에서 사용할 수 없습니다 alignedat
. 보다여기자세한 내용은.
\documentclass[11.5pt,a4paper ]{amsart}
\usepackage{lipsum}
\usepackage{latexsym,amssymb,enumerate}
\usepackage[english]{babel}
\allowdisplaybreaks % <----------
\begin{document}
...
\end{document}