章节标题后必须有两行文本

章节标题后必须有两行文本

如图所示,如果章节标题后面有两行文字,则该章节标题将出现在第一页。

如果添加一行,则章节标题将移动到下一页。

如何在添加一行文本时在第一页保留一个标题?

\documentclass[12pt]{article}
\usepackage{lipsum}
\begin{document}
\section{title}
\lipsum[1-3]
%If have this line, it will break the page here.
\section{title}
text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text 
\end{document}

在此处输入图片描述

答案1

根据@JasperHabicht 的建议,现在我知道这种现象被称为孤儿或寡妇。

我们可以使用该nowidow包来允许它。

\usepackage[defaultlines=1,all]{nowidow}

在此处输入图片描述

相关内容