新章节与旧章节结束在同一页上

新章节与旧章节结束在同一页上

我正在使用 documentclass thesis,想知道如何让新章节从与旧章节相同的页面开始,而不是自动从新页面开始?谢谢。

答案1

如果你有单面文件,则使用\let\clearpage\relax

\documentclass{book}
\begin{document}

\chapter{foo}
bar
\begingroup
\let\cleardoublepage\relax % no newpage
\chapter{baz}
foobar
\endgroup

\chapter{bazbar}
    foo
\end{document}

相关内容