I have a figure (in a rectangular frame), with blank space on the top two thirds of the left half of the image. I want to let paragraph text continue through this blank area (as if the figure didn't exist). How can I allow my text to continue on the figure?
\begin{tabular}{ccc}
\begin{minipage}{.3\linewidth}
\begin{itemize}
\item I want to continue this on the figure,
\item overwriting whatever is on the figure under the text.
\item The reason is that the figure has lots of blank space here
\item though the figure not rectangular;
\item part of the image will be right below this bullet point
\end{itemize}
\end{minipage}
\begin{minipage}{.3\linewidth}
\begin{figure}
\hspace*{-3cm}
\centering
\includegraphics[scale=0.25]{figure.pdf}
\end{figure}
\vspace*{-1cm}
\end{minipage}
\begin{minipage}{.3\linewidth}
\begin{itemize}
\item I will put some more text here
\item but I am more concerned about the one on the left.
\end{itemize}
\end{minipage}
\end{tabular}
With \hspace*{-3cm}, the figure is given priority over the text and so it overwrites and hides the text, while I want to achieve the opposite effect.

figure(floating object) or just an image? In this second case I think you could useshapepar. In any case a complete and compilable example would be better than just a code fragment. – Ignasi Oct 22 '15 at 08:48shapepar, it seemed quite complicated, compared to the answer given in the link above. – XymatrixUser Oct 22 '15 at 13:13