我正在写一本关于 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
章节开头的默认设置是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 ...”标题后面是一系列章节。也许以后你会有另一个标题,后面是其他章节。也许你可以考虑使用memoir
s\book
除法(或\part
)。
\documentclass[openany]{memoir}
\begin{document}
\book{The Adventures ...} % or \part{The Adventures ...}
\chapter{The Reader ...}
...
\end{document}