每当我使用输出加粗目录中的文本时,\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}