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