Latex:如何使一些文本和方程密不可分?

发布于 2024-10-17 10:11:22 字数 192 浏览 3 评论 0原文

我的意思是,我想要这样的东西:

.... 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

中性美 2024-10-24 10:11:22

确保它们属于同一段落:

.... bla blabla, the equation is:
%
\begin{equation}
...
\end{equation}

百分号在这里很重要,因为它可以防止段落结束。由于默认情况下 \predisplaypenalty 为 10000,因此文本的最后一行将始终与方程位于同一页上。

Make sure that they belong to the same paragraph:

.... bla blabla, the equation is:
%
\begin{equation}
...
\end{equation}

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.

牛↙奶布丁 2024-10-24 10:11:22

您可能可以调整在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文