章节目录中缺少点

章节目录中缺少点

我使用带星号的版本\chapter\section来避免章节和部分的编号。为了在目录中显示章节标题,我使用了\addcontentsline{toc}{<xxx>}

这会导致章节标题和目录中的页码之间没有点。

我怎样才能让这些点回到原来的位置?

答案1

目录的默认布局(无论是否加星标)位于memoir是没有点。这是由内部设置的

\newcommand{\cftchapterdotsep}{\cftnodots}

如果你想要点,最好将其设置为与分段单元点相匹配,这与 相同\cftdotsep。因此,使用

\renewcommand{\cftchapterdotsep}{\cftdotsep}% Chapters should use dots in ToC

作品。

在此处输入图片描述

\documentclass{memoir}
\renewcommand{\cftchapterdotsep}{\cftdotsep}% Chapters should use dots in ToC
\begin{document}
\tableofcontents
\chapter{A chapter}
\chapter*{A starred chapter}
\addcontentsline{toc}{chapter}{\protect\numberline{}A starred chapter}
\section{A section}
\end{document}

相关内容