tocloft 的点字体

tocloft 的点字体

我希望目录中从章节到页码处都有圆点。我还希望章节标题和页码不要使用粗体。我可以很好地制作圆点,甚至可以更改它们的间距。但无论我怎么摆弄,圆点仍然以粗体显示,即使周围的文本是纯文本。

这是 MWE

\documentclass{report}
\title{Fake Title}
\usepackage{lipsum}

\usepackage[titles]{tocloft}  % table of contents control and formatting
\renewcommand{\cftchapfont}{\normalfont}
\renewcommand{\cftchappagefont}{\normalfont}
\renewcommand{\cftchapdotsep}{\cftdotsep}

\begin{document}
\maketitle

\begin{abstract}
This is the report's abstract.
\end{abstract}

\tableofcontents

\chapter{Fake Chapter}
\section{Fake Section}
\lipsum
\section{More Fakeness}
\lipsum
\subsection{Even More!}
\lipsum

\chapter{Fake Chapter}
\lipsum

\end{document}

此 MWE 的目录打印如下。我可以做什么来控制点的外观?

在此处输入图片描述

答案1

我刚刚查阅了相关tocloft文档,发现了这颗隐藏的宝石:

\renewcommand{\cftchapleader}{\bfseries\cftdotfill{\cftchapdotsep}}

摆脱它就\bfseries可以得到我所需要的东西。 不带粗体引号的目录

相关内容