bem, estou aqui com um dilema com o nosso amigo:
quero por uma imagem ao lado do texto, mas ele só a poe em cima ou em baixo...
soluçoes??

Olá Titiana

Acho que tens que usar um float
Text Around Image: floatflt
Use the floatflt package to get text to wrap around a small figure:
\documentclass{article}
\usepackage{floatflt,graphicx}
...
\begin{floatingfigure}[<option>]{<width>}
\centering
\includegraphics{<filename>}
\caption{<text>}
\end{floatingfigure}
where option indicates the placement of the figure on the page and can be any combination of the following:
r --- right
l --- left
p --- right for odd-numbered pages, left for even-numbered pages
width is the width of the figure in the final document.
For example:
\documentclass{article}
\usepackage{floatflt,graphicx}
...
\begin{floatingfigure}[l]{5cm}
\centering
\includegraphics[scale=0.5]{graph.ps}
\caption{An Interesting Graph}
\end{floatingfigure}
fonte:
http://star-www.rl.ac.uk/~acc/tex/bull2.htx/node4.html