如何防止某些文本出现分页符?

如何防止某些文本出现分页符?

可能重复:
牢不可破的方块

我的文章部分很小,例如:

\subsubsection Some title

some text about figure:

\begin{figure}[h]
  \centering
  \includegraphics[width=0.5\columnwidth]{image-here.png}
\end{figure}

我认为如果所有这 3 条“行”(标题、文本和图像)都出现在单个页面上会更好,但除了在 之前插入 \pagebreak 之外,我没有找到其他方法\subsubsection。我以为\nopagebreak可以解决这个任务,但我无法获得预期的效果。还有其他选择吗?

答案1

尝试

\begin{samepage}
  some text about figure:
  \begin{center}
    \includegraphics[width=0.5\columnwidth]{image-here.png}
  \end{center}
\end{samepage}

无论如何,该部分都不应该允许在其后中断。

相关内容