使用居中文本后页面被跳过

使用居中文本后页面被跳过

我正在写一本关于 LaTeX 的书,但是出现了这个问题——我使用了这个居中文本方法:

\documentclass{memoir}
\usepackage[margin=1.5cm]{geometry}
\begin{document}
\vspace*{\fill}
\noindent
\makebox[\textwidth]{\Huge The Adventures of Adrian and Co.}
\vfill
\chapter{The Reader is Introduced to a Normal yet not Normal Camping Trip}
\end{document}

但标题后跳过了一页:标题 跳过页面第1章 我该如何解决这个问题?

答案1

章节开头的默认设置是openright每章都从右页(奇数页)开始。这就是 MWE 中的情况。您可以尝试openleft让所有章节都从左页(偶数页)开始的选项,或者openany让所有章节从下一页开始的选项。

%\documentclass{memoir}          % chapters start on next odd page
%\documenclass[openleft]{memoir} % chapters start on next even page
%\documentclass[openany]{memoir} % chapters start on next page

我不确定你最终想要达到什么效果,但我觉得“Adventures ...”标题后面是一系列章节。也许以后你会有另一个标题,后面是其他章节。也许你可以考虑使用memoirs\book除法(或\part)。

\documentclass[openany]{memoir}
\begin{document}
\book{The Adventures ...} % or \part{The Adventures ...}
\chapter{The Reader ...}
...
\end{document}

相关内容