如何更改图形标题的文字大小?
目前我的代码如下,
\begin{figure}[H]
\centering
\includegraphics[scale=1]{Image.png}
\caption{Caption}
\end{figure}
这使得标题的大小和字体与文档的批量文本相同。理想情况下,我希望它更小一些。
答案1
使用该caption
包并声明:
\captionsetup[figure]{font=Large,labelfont=Large}
\Large
例如,让图形标题带有字体。
可用值为scriptsize
、footnotesize
、small
、normalsize
、large
和Large
。
平均能量损失
\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
仅当您想对标题标签和标题本身使用不同的格式时才真正需要。