Latex:如何使一些文本和方程密不可分?
我的意思是,我想要这样的东西:
.... bla blabla, the equation is:
\begin{equation}
...
\end{equation}
我想最终将文本和方程一起呈现,也就是说,没有分页符,没有图形/其他任何东西。他们必须是密不可分的。
我该怎么做?
I mean, I want something like this:
.... bla blabla, the equation is:
\begin{equation}
...
\end{equation}
And I want to finally render the text and the equation together, that is, no page breaks, no figure/whatever else breaks. They have to be inseparable.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保它们属于同一段落:
百分号在这里很重要,因为它可以防止段落结束。由于默认情况下
\predisplaypenalty
为 10000,因此文本的最后一行将始终与方程位于同一页上。Make sure that they belong to the same paragraph:
The percent sign is the important thing here because it prevents a paragraph end. Since
\predisplaypenalty
is 10000 by default, the last line of the text will always be on the same page as the equation.您可能可以调整在 tex.stackexchange.com 对于列表。
基本上,不要在文本和方程之间使用
\par
,而是使用可防止分页的自定义\par
。You could probably adapt the solution proposed in tex.stackexchange.com for lists.
Basically, instead of using a
\par
between your text and the equation, use a custom\par
that prevents pagebreak.