我正在使用tocstyle
包来格式化目录。它工作得很好。但是,我只想稍微增加\part
目录中的标题。似乎tocstyle
使用字体作为\large
默认字体\part
。有没有办法将\part
标题的大小增加到\Large
或\LARGE
?tocstyle
当然,我可以\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}