回忆录文件中目录的放置

回忆录文件中目录的放置

我过去曾使用bookdocument 样式创建过两本书,但这次我尝试使用memoir样式。对于标题页,\maketitle我没有使用 ,而是复制(并改编)了 Peter Wilson 的“titleTH”样式的代码(第 47 页上的 A.2标题页的一些示例- 我无法重建我如何找到该文档,尽管我知道它是从memoir手册中的链接找到的)。

当我按照该代码操作时,\tableofcontents内容出现在标题页的底部。为了解决这个问题,我插入了一个,\newpage它解决了这个问题,但又引入了一个新问题。我希望我的章节在背面打开(\openleft),但\newpage似乎让内容在正面打开。我怀疑我应该将标题页代码包含在某个命令中以避免这种情况。我该如何解决这个问题?

% !TEX TS-program = pdflatex
\documentclass[openleft]{memoir}
\usepackage{afterpage}

\usepackage{xcolor}
\renewcommand{\chaptername}{Lecture}

\begin{document}

\frontmatter

\raggedleft
\vspace*{\baselineskip}
{\LARGE Zbigniew Nitecki}\\[0.167\textheight]
%{\bfseries The Big Book of}\\[\baselineskip]
{\textcolor{red}{\HUGE C\OE UR d'ANALYSE}}\\[\baselineskip]
{\Large 26 Lectures on Convergence and Continuity\\
with Discussions, Developments, and Diversions}\par
\vfill
{\Large Department of Mathematics \\ Tufts University }\par
\vspace*{3\baselineskip}

\newpage

\tableofcontents
\mainmatter

\part{The Real Numbers}
\raggedright

\input{Inequalities}

\end{document}

答案1

以下是您的 MWE 的扩展版本,现在包含章节。

% memopenprob.tex  SE 578347

% !TEX TS-program = pdflatex
\documentclass[openleft]{memoir}
%\documentclass[openleft]{book}
\usepackage{afterpage}

\usepackage{xcolor}
\renewcommand{\chaptername}{Lecture}

\usepackage{lipsum}

\begin{document}

\frontmatter

\raggedleft
\vspace*{\baselineskip}
{\LARGE Zbigniew Nitecki}\\[0.167\textheight]
%{\bfseries The Big Book of}\\[\baselineskip]
{\textcolor{red}{\HUGE C\OE UR d'ANALYSE}}\\[\baselineskip]
{\Large 26 Lectures on Convergence and Continuity\\
with Discussions, Developments, and Diversions}\par
\vfill
{\Large Department of Mathematics \\ Tufts University }\par
\vspace*{3\baselineskip}

%\newpage          %%%%% deleted
\cleardoublepage   %%%%% added

\tableofcontents
\mainmatter

\part{The Real Numbers}
\raggedright

%%%%%% following changed/added
%\input{Inequalities}
\chapter{Inequalities}
\lipsum[1]
\chapter{Equalities}
\lipsum[2]
\end{document}

页面\part总是从反面开始,后面跟着空白页(与课堂上相同book)。然后\chapter从反面开始,这是openleft课堂选项所要求的。

请注意,该openleft选项适用于章节,而不是部分。

相关内容