图表标题的字体大小

图表标题的字体大小

我的问题是关于改变字体大小。

我必须并排插入两个图。接下来分别插入图的标题:

Figure 3: blah blah.....................Figure 4: blah blah...

我可以更改“blah blah”的字体大小。我想知道的是如何更改“图 3”或“图 4”的字体大小,比如说图标题或类似的东西。我不知道它们叫什么,在网上搜索一下。

答案1

您可以使用以下方式实现这一点(甚至更多!)caption包裹

\usepackage[font=small,labelfont=bf]{caption}

将 设为Figure粗体,并将 设为标题内容small

参考文档第 2.3 节,尺寸选项font如下:

  • scriptsize
  • footnotesize
  • small
  • normalsize
  • large
  • Large

以下是一个可供玩转的 MWE

\documentclass{article}

\usepackage[font=scriptsize]{caption}
\usepackage{mwe}

\begin{document}

\begin{figure}
\centering
\begin{minipage}{.4\textwidth}
  \includegraphics[width=\textwidth]{example-image-a}
  \caption{My caption here}
\end{minipage}%
\hfill
\begin{minipage}{.4\textwidth}
  \includegraphics[width=\textwidth]{example-image-b}
  \caption{My other caption here}
\end{minipage}
\end{figure}

\end{document}

截屏

答案2

不知道为什么,但上面的答案对我不起作用。如果你也是这种情况,只需声明:

\usepackage{caption}
\captionsetup[figure]{font=small}

更多详细信息请参阅:更改图形标题文本大小。

相关内容