目录取消粗体

目录取消粗体

在此处输入图片描述

我希望默认条件 - 取消粗体 - 所有单词和数字。

\usepackage{tocloft}
\recommand{secfont}{nomarl}

答案1

更新以下宏以使\bfseries其中不包含:\cfttoctitlefont\cftsecfont\cftsecpagefont

在此处输入图片描述

\documentclass{article}

\usepackage{tocloft}

\renewcommand{\cfttoctitlefont}{\normalfont\Large}% Remove \bfseries from ToC title
\renewcommand{\cftsecfont}{}% Remove \bfseries from section titles in ToC
\renewcommand{\cftsecpagefont}{}% Remove \bfseries from section titles' page in ToC

\begin{document}

\tableofcontents

\clearpage

\section{Problem 1}

\section{Problem 2}

\section{Problem 3}

\end{document}

另一个快速解决方法是将其设置\bfseries为等同于\mdseries(或无)在仅在 ToC 周围具有限制范围的组内:

{\let\bfseries\mdseries% ...or \let\bfseries\relax
\tableofcontents
}

但这也可能会影响页眉/页脚内的内容。

相关内容