Latex无法自动换页

Latex无法自动换页

如果我只输入章节标题而不输入正文,Latex 无法自动开始新页面。以下是我的最低限度的工作。

\documentclass{book}

\begin{document}

\part{Title of Part I}
\chapter{Title of chapter a}
\section{section-1}
\section{section-2}
\section{section-3}
\section{section-4}
\section{section-5}
\section{section-6}
\section{section-7}
\section{section-8}
\section{section-9}
\section{section-10}

\section{section-11}
\section{section-12}
\section{section-13}
\section{section-14}
\section{section-15}
\section{section-16}
\section{section-17}
\section{section-18}
\section{section-19}
\section{section-20}

\end{document}

答案1

LaTeX 会防止紧接着分页,\section以避免在上一页的底部出现单个章节标题。

只需添加一些虚拟文本,直到写入部分文本,例如:

\part{Title of Part I}
\chapter{Title of chapter a}
\section{section-1}
TODO
\section{section-2}
TODO

...

相关内容