在 tocstyle 中将 \part (depth -1) 的字体大小更改为 LARGE 或 Large

在 tocstyle 中将 \part (depth -1) 的字体大小更改为 LARGE 或 Large

我正在使用tocstyle包来格式化目录。它工作得很好。但是,我只想稍微增加\part目录中的标题。似乎tocstyle使用字体作为\large默认字体\part。有没有办法将\part标题的大小增加到\Large\LARGEtocstyle

当然,我可以\part不使用而使用更大的字体。但我的问题实际上是同时tocstyle实现\part和 的更大字体,因为它为我提供了一种不错的目录格式。tocstyle

答案1

您可以使用

\settocstylefeature[-1]{entryhook}{\LARGE\bfseries}

\LARGE根据需要更改)。完整的例子:

\documentclass{book}
\usepackage{tocstyle}
\usetocstyle{standard}

\settocstylefeature[-1]{entryhook}{\LARGE\bfseries}

\begin{document}

\tableofcontents
\part{Test part}
\chapter{Test chapter}

\end{document}

在此处输入图片描述

相关内容