117

My question is about changing the font size.

I have to insert two figures side by side. Coming to inserting the captions for the figures individually:

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

I am able to change the font size of "blah blah". What I want to know is how to change the font size of "Figure 3" or "Figure 4", say the figure headers or something. I do not know what they are called to search on-line.

Stephen
  • 14,890
  • 2
    Welcome to TeX.sx! While cmhughes' answer is a very good one some classes like KOMA-Script or memoir have their own ways to do these things which is why a minimal working example (MWE) would be a good addition to your question. – cgnieder Dec 08 '12 at 16:29
  • It's not necessary to sign your questions (as there is already a box with your username below it). Usually, we don't put a greeting or a "thank you" in our posts. While this might seem strange at first, it is not a sign of lack of politeness, but rather part of our trying to keep everything very concise. Upvoting (with the upward pointing arrow to the left of it; you need 15 reputation points before you can upvote) and accepting it (by clicking on the checkmark) is the preferred way here to say "thank you" to users who helped you. – Stephen Dec 08 '12 at 16:40

2 Answers2

176

You can do this (and more!) with the caption package

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

will make Figure in bold, and make the caption content small.

Referencing Section 2.3 of the documentation, the size options for font are as follows:

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

Here's a MWE to play with

\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}

screenshot

cmhughes
  • 100,947
26

Not sure why but the answer above did not work for me. If that's the case for you, simply declare:

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

For more detail see: Changing Figure caption text size..

user659986
  • 361
  • 3
  • 3