\listoffigures 字体大小

\listoffigures 字体大小

谁能告诉我如何更改\listoffigures内容(不是标题)的字体大小?

tocloft我在包中找不到相应的选项

答案1

您正在寻找的命令是:

  • \cftloftitlefont:控制 LoF 标题的外观。

  • \cftfigfont:控制条目的外观(及其前面的数字,如果有)。

  • \cftfigpagefont:定义排版页码时使用的字体。

可以使用 更改这些命令\renewcommand。一个小例子(结果相当丑陋,但它说明了命令的用法):

\documentclass{article}
\usepackage{tocloft}

\renewcommand\cftloftitlefont{\Huge}
\renewcommand\cftfigfont{\tiny}
\renewcommand\cftfigpagefont{\Large}

\begin{document}
\listoffigures

\begin{figure}[!ht]\centering A\caption{test one}\end{figure}
\begin{figure}[!ht]\centering B\caption{test two}\end{figure}

\end{document}

在此处输入图片描述

答案2

如果你使用 KOMA 包,你可以使用例如

 \setkomafont{part}{\normalfont\bfseries}

在目录之前,然后再次使用以下命令更改大小:

 \setkomafont{part}{<some other options...>}

相关内容