假设我的图片标题有一些格式,比如不同的字体大小或其他不同的东西。在我的图片列表中,我仍然希望所有标题都采用标准格式,即\normalsize
正常的文本颜色等。(如何)可以在文章类中实现?
答案1
使用包captionsetup
中的命令caption
,您可以修改标题的格式,而不影响图形列表。
以下是包含三幅图的示例,每个标签的格式都不同。在此示例中,每个标题在环境中都是独立格式化的figure
,但captionsetup
可以将命令放在序言中以影响文档中的所有标题。请参阅包装文档更多细节。
\documentclass{article}
\usepackage{caption}
\usepackage{xcolor}
\begin{document}
\listoffigures
Some text to compare with the text in the list of figures.
\begin{figure}[h]
\captionsetup{textfont=small}
\caption{First figure.}
\end{figure}
\begin{figure}[h]
\captionsetup{textfont={large, color=red}}
\caption{Another figure.}
\end{figure}
\begin{figure}[h]
\captionsetup{textfont={small, bf}, labelfont=large}
\caption{Again another figure.}
\end{figure}
\end{document}