在 LaTeX 的 Memoir 类中使用 \chapterstyle{article} 时如何抑制页面弹出?

问题描述

我刚开始使用回忆录中的文章章节样式。 我在 LyX 中写作,文章的每个部分都在一个子文档中。 从主文档编译时,我希望每个部分的编号如下:

1. Introduction
2. Related Literature
2.1 Literature from Long Ago
2.2 Literature from Yesterday
... Etc.
n-1. Conclusion
n. References

为了实现这一点,顶级章节标题使用 \chapter。编号,格式等是完美的。除了:每个 \chapter 都触发页面弹出,我不知道如何解决这个问题。

页面上有空间时,使每个 \chapter(文章的部分)从前一章下方开始的最简单方法是什么?

解决方法

memoir 有一个名为 \clearforchapter 的宏,它通常确保章节从正确的页面开始。您可以像这样禁用它:

\documentclass{memoir}

\renewcommand{\clearforchapter}{}

\begin{document}

\chapter{test}

test

\chapter{test2}

test
  
\end{document}

enter image description here