我想使标题的大小与脚注大小相同,并将标题居中,而不必每次插入新图片时都使用 \captionsetup。
\begin{figure}[!htb]
\centering
\captionsetup{justification=centering,margin=2cm}
\caption{Formas de onda da tensão e fluxo no estado estacionário}
\includegraphics[scale=1]{inrush_adptado.png}\\
{\footnotesize Fonte: Imagem adaptada de (Anderson,1999)}
\label{fig:my_label}
\end{figure}
答案1
您可以插入\captionsetup
在文档前言中插入。这将允许您的设置应用于全部它所定义的浮点数,而不是将它们放在单独的浮点数内来实现相同的结果。
\documentclass{article}
\usepackage{caption,graphicx}
\captionsetup[figure]{
justification=centering,
margin=2cm,
font=footnotesize
}
\newcommand{\imagefootnote}[1]{%
\par\addvspace{.5\baselineskip}
{\footnotesize #1\par}%
}
\begin{document}
\begin{figure}
\centering
\caption{Figure caption}
\includegraphics[scale=0.5]{example-image}
\imagefootnote{Fonte: Imagem adaptada de (Anderson,1999)}
\end{figure}
\end{document}