我可以在同一環境中自動分頁大量方程式嗎subequation
?我必須將它們放在附錄中,並且我無法連續更改align
組的開始和結束位置。結果,附錄從新頁面開始,更糟的是,有時前面還有一個空白頁。
對齊組看起來不自然,但我必須建立它們才能進行分頁。這可以自動實現嗎?
\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}