I want to put figures in rows, but the vertical space between sub-images is too large, how can I reduce the space between them?
Note: The template uses \usepackage{subfigure}, so it cannot use \usepackage{subcaption}
The code is there:
\begin{figure}
\centering
\subfigure[]{\label{fig:test1}\includegraphics[width=100mm]{test1.jpg}}
\subfigure[]{\label{fig:test2}\includegraphics[width=100mm]{test2.jpg}}
\caption{The space is too large}
\end{figure}

Thanks in advance!
\documentclass{...}and ending with\end{document}. – Jun 09 '14 at 09:41subfigureis deprecated, usesubfiginstead please, see also http://tex.stackexchange.com/questions/144782/subfigure-and-subfig-packages-deprecated – Jun 09 '14 at 09:48subfig- I've just tried a basic example myself and I don't get anything like the amount of space you do and I don't have any special settings. Have you got any whitespace included around your graphics that you need to clip (add, clip=trueinside the square brackets)? Of course,subfigmight do things differently fromsubfigurebut as stated above you should probably switch. – FionaSmith Jun 09 '14 at 10:01floatrowpackage? It also can manage sideways captions, a row can be either a row of figures or a row of subfigures, and it cooperates with thecaptionpackage. – Bernard Jun 09 '14 at 10:14looking into a chrystal balland guess what might be the cause ;-) – Jun 09 '14 at 12:51subfigurewith thetightoption:\usepackage[tight]{subfigure}. Does that reduce the space? – MSC Sep 22 '15 at 22:36