I need to only have bfseries on the numbers that indicate the section and not the subsection, like this:
I have tried the following commands, but still, I cant get it:
\renewcommand{\mtcfont}{\small}
\renewcommand{\mtcSfont}{\small}
\renewcommand{\mtcSSfont}{\small}
\renewcommand{\mtcSSSfont}{\small}
mwe:
\documentclass{book}
\usepackage{minitoc}
\begin{document}
\dominitoc% Initialization
\tableofcontents
\chapter{bla}
\minitoc% Creating an actual minitoc
\section{blubb}
\section{foo}
\end{document}


\usepackage{tocloft} \renewcommand{\cftchapfont}{\normalfont} % non bold chapter header \renewcommand{\cftchappagefont}{\normalfont\bfseries} % bold page numbershelps. – leandriis Nov 01 '19 at 12:10