更改图形标题文本大小。

更改图形标题文本大小。

如何更改图形标题的文字大小?

目前我的代码如下,

\begin{figure}[H]
\centering
\includegraphics[scale=1]{Image.png}
\caption{Caption}
\end{figure}

这使得标题的大小和字体与文档的批量文本相同。理想情况下,我希望它更小一些。

答案1

使用该caption包并声明:

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

\Large例如,让图形标题带有字体。

可用值为scriptsizefootnotesizesmallnormalsizelargeLarge

平均能量损失

\documentclass{article}
\usepackage{graphicx}
\usepackage{caption}
\captionsetup[figure]{font=Large,labelfont=Large}
\begin{document}
\begin{figure}
\centering
\includegraphics[scale=.3]{example-image}
\caption{Caption}
\end{figure}
\end{document} 

在此处输入图片描述

labelfont仅当您想对标题标签和标题本身使用不同的格式时才真正需要。

相关内容