[Tex/LaTex] How to put in a graphical abstract

abstractarticlefloats

I tried adding figure environment inside the abstract area but it generates an error. How do I add a graphical abstract as well as a textual one?

Best Answer

You can just use \includegraphics without the figure environment. Here's an example:

\documentclass{article}

\usepackage{graphicx}

\begin{document}
\begin{abstract}
One possible method:

{\centering
\includegraphics{test-img}
\par
}

This is a sample abstract with the image centred on the line above. 
Another method below.

\begin{minipage}[t]{0.5\linewidth}
Here's another paragraph with the image on the right of the text.
It's done by putting this paragraph in a minipage environment with a
top-aligned image next to it.
\end{minipage}
\vtop{%
  \vskip-1ex
  \hbox{%
    \includegraphics[width=0.45\linewidth]{test-img}%
  }%
}%
\end{abstract}
\end{document}

See Top-aligning imported graphics for an explanation about the \vtop stuff.

Related Question