在图片标题中添加图片

在图片标题中添加图片

我需要在图片的标题中放置一个小图像,但我不知道如何做,请帮忙。

\begin{figure}[H]
   \begin{center}
       \includegraphics[width=9.5cm]{figure.eps}\\
\caption{Some text [SMALL IMAGE HERE].}\label{figure}
\end{center}
\end{figure}

答案1

您可能会遇到问题,因为您必须\protect\caption

\documentclass{article}

\usepackage{graphicx}

\usepackage{float}

\begin{document}

\begin{figure}[H]
  \centering
  \includegraphics[width=9.5cm]{example-image}
  \caption{Some text \protect\includegraphics[height=1.5ex]{example-image}.}
  \label{figure}
\end{figure}

\end{document}

在此处输入图片描述

相关内容