12

Similar to putting a tikzpicture inside a \caption{}, I would like to insert an external icon inside figure captions, something like:

\begin{figure}
\caption{text with \includegraphics{icon} somewhere inside}
\includegraphics{image}
\end{figure}

How might this be done?

proge
  • 155

1 Answers1

18

You need to protect \includegraphics inside \caption; this, however, will add the image also to a possible list of figures, so perhaps you would rather use the optional argument of \caption; in this case, no protection is needed. The following example code shows both alternatives:

\documentclass{article}
\usepackage[demo]{graphicx}% demo option just for the example

\begin{document}

\listoffigures

\begin{figure}
  \centering
  \caption{text with \protect\includegraphics[height=1cm]{icon} somewhere inside}
  \includegraphics{image}
\end{figure}

\begin{figure}
  \centering
  \caption[text for the LoF]{text with \includegraphics[height=1cm]{icon} somewhere inside}
  \includegraphics{image}
\end{figure}

\end{document}

enter image description here

Gonzalo Medina
  • 505,128
  • that answers my question perfectly. Both options worked, either using the \protect command or including the \caption[LoF]{} format. Thanks! – proge May 02 '12 at 14:12