如何在零件级别的 KOMA-Script 目录中创建点填充线?

如何在零件级别的 KOMA-Script 目录中创建点填充线?

我想要实现的是文档目录中的虚线scrbook。但是,我只找到了在章节级别执行此操作的选项toc=chapterentrydotfill,逻辑上toc=partentrydotfill不存在,因此我的 MWE:

\documentclass[toc=chapterentrydotfill,toc=partentrydotfill]{scrbook}

\begin{document}
\tableofcontents
\part{foo1}
\chapter{foo2}
\section{foo3}
\end{document}

生产

在此处输入图片描述

答案1

您可以使用

\RedeclareSectionCommand[toclinefill=\TOCLineLeaderFill]{part}

或者

\DeclareTOCStyleEntry[linefill=\TOCLineLeaderFill]{tocline}{part}

两者均可以用于章节。

例子:

\documentclass{scrbook}

\RedeclareSectionCommands[toclinefill=\TOCLineLeaderFill]{part,chapter}

\begin{document}
\tableofcontents
\part{foo1}
\chapter{foo2}
\section{foo3}
\end{document}

在此处输入图片描述

相关内容