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