如何临时使目录条目的一部分不加粗

如何临时使目录条目的一部分不加粗

考虑一下代码

\documentclass[12pt]{book}

\usepackage{tocloft}
\renewcommand{\cftchapfont}{\small\bfseries} 

\begin{document}
\tableofcontents
\addcontentsline{toc}{chapter}{INTRODUCTION (Unbold portion)}
\end{document}

产生

在此处输入图片描述

问题:如何才能使默认为粗体的目录条目的一部分不临时变为粗体?在这种情况下,我想使(非粗体部分)显得不够大胆。

谢谢。

答案1

您可以使用\normalfont切换到非粗体文本。由于它会影响目录行中的所有后续文本,因此,如果需要,使用括号限制其范围可能会很方便。

A

\documentclass[12pt]{book}

\usepackage{tocloft}
\renewcommand{\cftchapfont}{\small\bfseries} 

\begin{document}
    \tableofcontents
    \addcontentsline{toc}{chapter}{INTRODUCTION {\normalfont (Unbold portion)}  bolded text again}% changed <<<<<<<<<<<<<
\end{document}

相关内容