答案1
使用选项toc=chapterentrywithdots
:
\documentclass[sfdefaults=false,headings=optiontoheadandtoc,
toc=chapterentrywithdots% <- added
]{scrreprt}
\begin{document}
\tableofcontents
\addchap{Introduction}
\chapter{Foo}
\end{document}
或\RedeclareSectionCommand
选择toclinefill=\TOCLineLeaderFill
\documentclass[sfdefaults=false,headings=optiontoheadandtoc]{scrreprt}
\RedeclareSectionCommand[
toclinefill=\TOCLineLeaderFill
]{chapter}
\begin{document}
\tableofcontents
\addchap{Introduction}
\chapter{Foo}
\end{document}
或者\DeclareTOCStyleEntry
使用选项linefill=\TOCLineLeaderFill
:
\documentclass[sfdefaults,headings=optiontoheadandtoc]{scrreprt}
\DeclareTOCStyleEntry[
linefill=\TOCLineLeaderFill
]{tocline}{chapter}
\begin{document}
\tableofcontents
\addchap{Introduction}
\chapter{Foo}
\end{document}
结果:
评论:
对于 KOMA-Script 版本 3.39 或更新版本,类选项sfdefaults=false
取代了已弃用的和未记录的选项egregdoesnotlikesansseriftitles
。