如何使迷你目录不加粗

如何使迷你目录不加粗

标准外观\usepackage{minitoc}大胆的章节中每个部分/小节的字母。我该如何制作不带粗体字母的迷你目录?

谢谢。

答案1

假设您正在使用\dominitoc\minitoc命令,您可以重新定义命令\mtcfont(应用于整个 minitoc)、\mtcSfont(应用于章节列表)、\mtcSSfont(应用于小节)等。我认为默认定义是,\small\bfseries因此您可以省略\bfseries,或者进行任何其他您想要的更改:

\documentclass{book}
\usepackage{minitoc}

\renewcommand{\mtcfont}{\small}
\renewcommand{\mtcSfont}{\small}
\renewcommand{\mtcSSfont}{\small}

\begin{document}
\dominitoc
\faketableofcontents

\chapter{My chapter}

\minitoc

\section{My first section}

\subsection{My first subsection}

\section{My second section}

\chapter{Another chapter}

\minitoc

\section{This section}

\end{document}

更多信息,请参阅minitoc 文档,第 7 页。

相关内容