答案1
我不确定我是否理解了期望的结果。但使用 KOMA-Script 3.20 或更新版本应该可以实现。
\documentclass{scrbook}[2016/05/10]
\RedeclareSectionCommands[
toclinefill=\quad$\cdot$,
tocraggedpagenumber=true,
tocindent=0pt
]{chapter,section,subsection}
\begin{document}
\tableofcontents
\chapter{Blah}
\section{blah}
\KOMAScriptVersion
\end{document}
linefill
、raggedpagenumber
等是所有 KOMA-Script 部分级别的默认使用的indent
条目样式的属性。tocline
样式及其属性在KOMA-Script 文档章节tocline
中的“表格或内容列表的条目配置”部分中描述。tocbasic
在那里,在的解释中\RedeclareSectionCommand
也提到,这些以toc
(即toclinefill
、tocraggedpagenumber
、tocindent
) 为前缀的属性可以用作等中的选项\RedeclareSectionCommand
。