1

Possible Duplicate:
Create caption without float AND without caption-package?

i have this:

\begin{minipage}[b]{0.35\linewidth}  

Here is the text

\end{minipage}

\hfill
\begin{minipage}[b]{0.55\linewidth}
\centering
\includegraphics[scale=0.8]{imag9}
\caption{TEXT}
\label{fig3.5}
\end{minipage}

When i try to add \caption and \label (as in the figure) it shows me errors but the pdf i am taking is ok! Is there another way to do that?

George
  • 563
  • 4
  • 8
  • 16

1 Answers1

6

To label pictures outside of a figure-environment, use the caption package with the macro captionof like this:

\documentclass[11pt]{article}
\usepackage{caption}
\usepackage[draft]{graphicx}
\begin{document}
  \begin{minipage}[b]{0.35\linewidth}\centering
    Here is the text
  \end{minipage}\hfill
  \begin{minipage}[b]{0.55\linewidth}\centering
    \includegraphics[width=5cm]{image}
    \captionof{figure}{A wonderful picture}
  \end{minipage}
\end{document}