我希望目录中从章节到页码处都有圆点。我还希望章节标题和页码不要使用粗体。我可以很好地制作圆点,甚至可以更改它们的间距。但无论我怎么摆弄,圆点仍然以粗体显示,即使周围的文本是纯文本。
这是 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 的目录打印如下。我可以做什么来控制点的外观?