Graphics, Figures & Tablesincludegraphics inside \caption{}

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
hm24_arul
Posts: 11
Joined: Tue Mar 31, 2009 8:04 am

includegraphics inside \caption{}

Post by hm24_arul »

Hi all,

I need to include graphics file inside the figure caption, I coded like below

Code: Select all

\begin{figure}
\includegraphics{figure.eps}
\caption{mytext \includegraphics{capfigure.eps} mytext.}
\end{figure}
I am failed, any one help me how to call graphic inside figure caption.
thanks

regards
a r u l

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

includegraphics inside \caption{}

Post by gmedina »

Hi,

use the optional argumen of the \caption command, as the following schematic shows:

Code: Select all

\begin{figure}[!ht]
  \centering
  \includegraphics{name}
  \caption[the caption that will appear in the LoF]{texr \includegraphics{name} text}
  \label{fig:test}
\end{figure}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
Stefan Kottwitz
Site Admin
Posts: 10321
Joined: Mon Mar 10, 2008 9:44 pm

includegraphics inside \caption{}

Post by Stefan Kottwitz »

Hi arul,

if you want the graphic to appear in the list of figures it would be enough to insert \protect:

Code: Select all

\caption{mytext \protect\includegraphics{capfigure.eps} mytext.}
Stefan
LaTeX.org admin
hm24_arul
Posts: 11
Joined: Tue Mar 31, 2009 8:04 am

Re: includegraphics inside \caption{}

Post by hm24_arul »

Hi gmedina

thanks for your code it works

thanks a lot again

regards
a r u l
Post Reply