如何改变不同图像的图像标题的字体大小?

如何改变不同图像的图像标题的字体大小?

我正在寻找一种调整标题大小的方法。

我发现的所有解决方案都与标题包有关,并使用一些可以全局改变尺寸的东西。

我希望对它们每一个进行不同的调整。

例如,在下图中,我想让虾保持原样,海豚稍微大一点,鲸鱼最大。可以吗?

也许是这样的:全局更改标题大小,重置,再次更改,重置,再次更改,重置。

在此处输入图片描述

以下是代码:

\documentclass[]{article}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{xcolor} 
\usepackage{graphicx}

\begin{document}

\begin{figure}
\includegraphics[scale = 0.3]{shrimp}
    \caption{shrimp}
\end{figure}

\begin{figure}
\includegraphics{Dolphin}
    \caption{dolphin}
\end{figure}


\begin{figure}
\includegraphics[scale = 0.3]{whale}
    \caption{whale}
\end{figure}


% or play with the following

 \begin{figure}
    \caption{shrimp}
    \includegraphics[height=4cm,width=6cm]{shrimp} 
    \hfill
    \caption{dolphin}
    \includegraphics[height=4cm,width=6cm]{Dolphin}
    \hfill
    \caption{whale}
    \includegraphics[height=4cm,width=6cm]{whale}
\end{figure}

\end{document}

答案1

您可以将caption包加载到您的序言中,然后像这样编写

\caption*{\large Figure 2: FigName}
\caption*{\Huge Figure 3: Blah Blah}

查看完整代码这里

您还可以通过命令自定义字体大小\fontsize

答案2

使用caption包进行本地更改也是可能的,例如:

\begin{figure}
    \includegraphics{Dolphin}
    \captionsetup{size=large}
    \caption{dolphin}
\end{figure}

这样,只会\captionsetup{size=large}影响这一特定内容的标题figure

另请参阅caption包文档,第 1 节“使用此包”:

\captionsetup 只对当前环境有影响,这一点很重要。因此,如果您只想更改当前图形或表格的设置,只需将 \captionsetup 命令放在图形或表格内 \caption 命令之前即可。

相关内容