回忆录:将章节排版为目录中的部分

回忆录:将章节排版为目录中的部分

对于我的附录,我想改变目录的外观,使得附录章节看起来像文档主体部分的章节。

下面的代码

\documentclass{memoir}
\begin{document}
\tableofcontents*

\chapter{First}
\section{sub}
\chapter{Second}
\appendix
\chapter{Appendix 1}
\chapter{Appendix 2}
\end{document}

产生以下目录:

1 First
  1.1 sub
2 Second
A Appendix 1
B Appendix 2

然而,我想要的是以下内容:

1 First
  1.1 sub
2 Second
Appendices
  A Appendix 1
  B Appendix 2

答案1

一种方法

\documentclass{memoir}

\cftinsertcode{APP}{
  \setlength\cftchapterindent{\cftsectionindent}
  \setlength\cftbeforechapterskip{0pt}
  \renewcommand\cftchapterfont{\normalfont}
  \renewcommand\cftchapterpagefont{\normalfont}
}

\begin{document}
\tableofcontents*

\chapter{First}
\section{sub}
\chapter{Second}
\appendix
\appendixpage
\cftinserthook{toc}{APP}
\chapter{Appendix 1}
\chapter{Appendix 2}
\end{document}

相关内容