标题文字和标签大小仅为一个图形

标题文字和标签大小仅为一个图形

我可以将标题文字大小和标签大小更改为仅一个图形吗?

我在其他问题中看到过:

\captionsetup[figure]{font=footnotesize,labelfont=footnotesize}

可用于更改标题的大小,但这是针对整个文档的,我只想对一个图形执行此操作;这可能吗?

谨此致以最诚挚的问候并表示感谢。

答案1

如果在相关环境中使用,则可以在figure或环境中对特定标题进行本地更改。请参阅第二个环境的示例——设置的更改不会泄漏到外部,也不会对第三个标题产生影响。table\captionsetupfigurefigure

确保删除可选参数[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}

在此处输入图片描述

相关内容