尝试仅将 bfseries 添加到数字

尝试仅将 bfseries 添加到数字

我只需要在指示部分而不是子部分的数字上使用 bfseries,如下所示:

在此处输入图片描述

我尝试了以下命令,但仍然无法得到它:

\renewcommand{\mtcfont}{\small}

\renewcommand{\mtcSfont}{\small}
\renewcommand{\mtcSSfont}{\small}
\renewcommand{\mtcSSSfont}{\small}

母语:

\documentclass{book}

\usepackage{minitoc}

\begin{document}

\dominitoc% Initialization
\tableofcontents

\chapter{bla}
\minitoc% Creating an actual minitoc

\section{blubb}

\section{foo}

\end{document}

在此处输入图片描述

答案1

借助该tocloft包,您可以控制目录的每个元素的样式。为了使章节标题不加粗但保持相应的页码加粗,我们可以重新定义,\cftchapfont如以下示例所示:

\documentclass{book}

\usepackage{tocloft} 
\renewcommand{\cftchapfont}{\normalfont} % non bold chapter header

\usepackage{minitoc}

\begin{document}

\dominitoc% Initialization
\tableofcontents

\chapter{bla}
\minitoc% Creating an actual minitoc

\section{blubb}

\section{foo}

\end{document}

相关内容