I am trying to put a figure next to a list, where the list is talking about the figure. This is fine, I can do that with the minipage environment. However, my problem is that when I try to put a caption on the figure, it captions the entire "figure" containing the minipages, not just the picture itself. I have included an example of what I have done.
I have searched around on the internet but haven't been able to work out a solution. I have tried using subfigures, wrapping text, floatinf figure, etc. None of these have worked, often giving an output with the figure in the wrong place.
Any thoughts on how to fix this?
Here is my document so far:
\documentclass[twoside,a4paper]{report}
\usepackage[ignorefoot, ignoremp, ignorehead]{geometry}
\usepackage{fancyhdr}
\usepackage{amsmath,amsthm,amssymb}
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage{eepic}
\usepackage{mhchem}
\usepackage{chemstyle}
\usepackage{color}
\usepackage{./Scripts/simplemargins}
\usepackage{array}
\usepackage{multirow}
\usepackage{bigstrut}
\usepackage{wrapfig}
\usepackage{paralist}
\usepackage{enumitem}
\usepackage{cite}
\usepackage{graphicx}
\usepackage{titlesec}
\usepackage{booktabs}
\usepackage{subfig}
\usepackage{hyperref}
\begin{document}
\begin{figure}[ht]
\begin{minipage}[b]{0.48\linewidth}
\begin{itemize} [ ] % To get list without points
\item{Blah blah blah
\begin{enumerate}
\item{Text}
\item{Text}
\end{enumerate}
}
\item{More blah blah blah
\begin{enumerate}
\item{Text}
\item{Text}
\end{enumerate}
}
\end{itemize}
\end{minipage}
\hfill
\begin{minipage}[b]{0.48\linewidth}
\centering
\includegraphics[scale=0.2]{caption_example.pdf}
\caption{default}
\label{fig:label}
\end{minipage}
\end{figure}
\end{document}
articleclass andgraphicxloaded. You seem to load some package which changes the caption (anditemizebecause the normal one doesn't like the[]argument). – Martin Scharrer♦ Feb 8 '11 at 8:40articleand the packages{enumitem}and[demo]{graphicx}. – Jake Feb 8 '11 at 8:41paralistpackage to alter theitemizeenvironment. – anpro Feb 8 '11 at 9:31