如何在目录中加粗章节、部分名称但不加粗点和数字

如何在目录中加粗章节、部分名称但不加粗点和数字

每当我使用输出加粗目录中的文本时,\renewcommand{\cftsecfont}{\bfseries}都会显示如下内容:

2 章节名称 ................................. 24

2.1 章节名称 ................................ 25

但我想要的是这样的:

2 章节名称......................... 24

2.1 章节名称........................... 25

这个怎么做?

答案1

一些建议:

  • 要为目录中的章节级条目启用“点引线”,您需要发出指令

    \renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}}
    
  • 要取消章节级别条目的页码加粗,您需要发出指令

    \renewcommand{\cftchappagefont}{\mdseries}
    

完整的 MWE (最小工作示例):

在此处输入图片描述

\documentclass{book}

\usepackage{tocloft}
\renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}}
\renewcommand{\cftchappagefont}{\mdseries}

\begin{document}
\frontmatter
\tableofcontents

\mainmatter
\chapter{Uno}
\chapter{Due}
\end{document}

相关内容