如何在章节中添加圆点?

如何在章节中添加圆点?

在此处输入图片描述

我怎样才能将像图片中那样的点添加到目录中的章节中?

这是我的文档类。我在这里读到的大多是人们使用 来解决这个问题memoir。还有其他(简单)的方法吗?

\documentclass[egregdoesnotlikesansseriftitles,headings=optiontoheadandtoc]{scrreprt}

答案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

相关内容