scrartcl toc sectionentrywithdots 格式

scrartcl toc sectionentrywithdots 格式

我对 tex 还很陌生。我设法得到了我想要的一切。但我被目录难住了。

\documentclass[12pt,oneside,titlepage,listof=totoc,bibliography=totoc,toc=sectionentrywithdots]{scrartcl}

现在我想将节点和目录中的标题以粗体打印。有没有办法在不破坏整个格式的情况下做到这一点?

带有相同点的 toc

答案1

免责声明:我不推荐目录中的粗体点。

如果你确实想要为章节条目添加粗体点,请使用

\addtokomafont{sectionentrydots}{\bfseries}

例子:

\documentclass[12pt,oneside,titlepage,listof=totoc,bibliography=totoc,toc=sectionentrywithdots]{scrartcl}
\usepackage{blindtext}
\addtokomafont{sectionentrydots}{\bfseries}

\begin{document}
\tableofcontents
\blinddocument
\end{document}

答案2

我找到了解决问题的方法。您可以完全替换填充字符。这不需要 Sectionentrywithdots。

\documentclass[12pt,oneside,titlepage,listof=totoc,bibliography=totoc]{scrartcl}

然后您就可以使用所需的字符。\textbf{.}这里是粗体点。

\RedeclareSectionCommand[
  toclinefill={\TOCLineLeaderFill[\textbf{.}]}
]{section}

相关内容