如果我使用\intertext{some sentence or two}
然后继续align
,align
环境是否会在插入文本的分页符处中断,还是仍然牢不可破?
如果它仍然牢不可破,有没有办法让它在不使用新
align
环境的情况下变得可破,并\phantom{some equation}
重新调整对齐位置。
因此考虑一下:
\documentclass{article}
\usepackage{mathtools}
\begin{document}
Suppose this text takes us just above the page breaking point (let's say 5 lines).
\begin{align*}
1 &= 1\\
2 &= 2\\
\intertext{sentence 1\\
sentence 2.}
3 &= 3\\
4 &= 4\\
5 &= 5
\end{align*}
\end{document}
如果框不分页,则会出现很大的空白间隙,看起来会很难看。但是,如果在 处分页\intertext{}
,则外观会更加自然,align
在分页后保留环境的其余部分。
答案1
嗯,快速测试表明它可以在 之前中断\intertext
。如果这还不够,您可以添加\allowdisplaybreaks
以允许在多行数学环境中的行之间分页。
\documentclass[a5paper]{article}
\usepackage{mathtools}
% \allowdisplaybreaks
\begin{document}
\vspace*{8cm}
Suppose this text takes us just above the page breaking point (let's say 5 lines).
\begin{align*}
1 &= 1\\
2 &= 2\\
\intertext{sentence 1 sentence 1sentence 1 sentence 1 sentence 1.
sentence 2.}
3 &= 3\\
4 &= 4\\
5 &= 5
\end{align*}
\end{document}