I want to customize chapter entries in Table of Contents.
\documentclass[final]{book}
\title{Title}
\author{Author}
\date{}
\begin{document}
\maketitle
\tableofcontents
\chapter*{Chapter Title}
\addcontentsline{toc}{chapter}{Chapter Title}
\end{document}
By default, chapter entries in Table of Contents are bolded. I want to make them not bolded. For example, in other situations where I would like to use not bolded text in otherwise bolded environment, I would use \textnormal command. However, I am not able to find a way to redefine chapter entry in ToC to use that setting.
By default, subsections entries have dot leaders, but chapter entries does not. I would like to add dot leaders to chapter entries in ToC.
I found tocloft package. It looks like it should be able to do both of those things, but I was not able to find suitable example in its documentation.
titlesoption oftocloftpackage and be able to influence appearance of the headers at the same time that would be useful for others. – Rafal Dec 07 '13 at 11:23titlesoption oftocloftallowstitlesecto format the ToC title, as it relies on the numberless chapter format (\chapter*). – Apr 09 '17 at 10:47