回忆录:在附录章节前添加“部分空白”

回忆录:在附录章节前添加“部分空白”

我希望目录中后记章节前的垂直空间与部分前的垂直空间相同。我原本以为下面的代码可以实现这一点,但空间似乎更大一些。我遗漏了什么?

\documentclass{memoir}
\usepackage{etoolbox}
\preto{\backmatter}{\addtocontents{toc}{\cftpartbreak\protect\addvspace{\cftbeforepartskip}}}
\begin{document}
  \frontmatter
  \tableofcontents*
  \chapter{Preface}

  \mainmatter
  \part{First part}
  \chapter{First chapter}
  \chapter{Second chapter}

  \part{Second part}
  \chapter{Third chapter}
  \chapter{Fourth chapter}

  \backmatter
  \chapter{About the author}
\end{document}

MWE 结果

相关内容