我正在使用班级回忆录。我想知道是否有可能拥有这样的目录:
Abstract ............................. i
List of Figures ...................... iv
List of Tables ....................... v
^
| increase the size
v
1 XXXXXX ............................. 1
2 XXXXXX ............................. 2
memoir 是否能够在 frontmatter 章节和 mainmatter 章节之间留出特殊空间?我阅读了用户指南,但找不到任何相关信息。
[编辑:代码示例]
\documentclass{memoir}
\usepackage{lipsum}
\begin{document}
\frontmatter
\chapter{Abstract}
\lipsum[23-24]
\cleardoublepage
\tableofcontents*
\clearpage
\listoffigures
\clearpage
\listoftables
\mainmatter
\chapter{Test Chapter One}
\section{Section One One}
\section{Section One Two}
\chapter{Test Chapter Two}
\section{Section Two One}
\section{Section Two Two}
\end{document}
答案1
我刚刚找到了一个解决方案
这个想法是重新定义\mainmatter
在 ToC 中添加空间
\documentclass{memoir}
\let\oldmainmatter\mainmatter
\renewcommand{\mainmatter}{%
\addtocontents{toc}{\protect\addvspace{30pt}}%
\oldmainmatter%
}
\begin{document}
\frontmatter
\chapter{Abstract}
\cleardoublepage
\tableofcontents*
\clearpage
\listoffigures
\clearpage
\listoftables
\mainmatter
\chapter{Test Chapter One}
\section{Section One One}
\section{Section One Two}
\chapter{Test Chapter Two}
\section{Section Two One}
\section{Section Two Two}
\end{document}