我可以将标题文字大小和标签大小更改为仅一个图形吗?
我在其他问题中看到过:
\captionsetup[figure]{font=footnotesize,labelfont=footnotesize}
可用于更改标题的大小,但这是针对整个文档的,我只想对一个图形执行此操作;这可能吗?
谨此致以最诚挚的问候并表示感谢。
答案1
如果在相关环境中使用,则可以在figure
或环境中对特定标题进行本地更改。请参阅第二个环境的示例——设置的更改不会泄漏到外部,也不会对第三个标题产生影响。table
\captionsetup
figure
figure
确保删除可选参数[figure]
或[table]
,否则caption
会出现错误并且根本不应用本地更改。
\documentclass{article}
\usepackage{caption}
\begin{document}
\begin{figure}
\caption{Foo figure}
\end{figure}
\begin{figure}
\captionsetup{font=footnotesize,labelfont=footnotesize}
\caption{Foobar figure}
\end{figure}
\begin{figure}
\caption{other Foo figure}
\end{figure}
\end{document}