I need to place three images on a page with text under each, and then one 'overall' caption for the figure. This code puts the images on top of each other but the text is to the left of the images, I need the text under each image. E.g. n = 10 steps should be the text directly under the first image.
\begin{figure}[ht]
\centering
\subfigure[$n = 10$ steps]{
{\includegraphics[width=0.45\textwidth]{Raster/cw_10.png}
\label{cw_10}
}\\
\subfigure[$n = 25$ steps]{
{\includegraphics[width=0.45\textwidth]{Raster/cw_25.png}
\label{cw_25}
}\\
\subfigure[$n = 50$ steps]{
{\includegraphics[width=0.45\textwidth]{Raster/cw_50.png}
\label{cw_50}
}
\caption{Classical Random Walk with various step sizes.}
\label{TS}
\end{figure}



\par\medskipinstead of just\parto increase the vertical separation between subfigures. I am not sure if this is the distance you want to increase; if it's not, please let me know which one is. – Gonzalo Medina Apr 04 '14 at 13:16\refis exactly the same used in\label; so if\labelis only\label{cw_10_25_50}, then you should use\ref{cw_10_25_50}(without the "fig:" prefix). Of course, if you want to use the prefix as in\ref{fig:cw_10_25_50}, then you should also include it in\label, as in\label{fig:cw_10_25_50}. Compile twice after doing the change. If the problem persists, the best thing to do will be to open a fresh new question. – Gonzalo Medina Apr 04 '14 at 13:27