Code: Select all
\usepackage{graphicx,subfigure,float}
\addtolength{\subfigcapskip}{-25pt}
\addtolength{\subfigbottomskip}{-25pt}
\addtolength{\subfigtopskip}{-25pt}
Code: Select all
\usepackage{graphicx,subfigure,float}
\addtolength{\subfigcapskip}{-25pt}
\addtolength{\subfigbottomskip}{-25pt}
\addtolength{\subfigtopskip}{-25pt}
NEW: TikZ book now 40% off at Amazon.com for a short time.
subfig
provides some vertical skips, such as before and after a subcaption. I guess you need to put horizontal space between subfigures yourself by \hspace
, \quad
or similar, if you arrange subfigures horizontally.Code: Select all
\usepackage[demo]{graphicx}
Code: Select all
\setlength{\abovecaptionskip}{-1pt}
\setlength{\belowcaptionskip}{-1pt}
\addtolength{\subfigcapskip}{-1pt}
Code: Select all
\documentclass[11pt]{article}
\usepackage{caption}
\usepackage{amsmath,amssymb,amsthm,subfigure,float}
%\usepackage{graphicx}
\usepackage[demo]{graphicx}
\setlength{\abovecaptionskip}{-1pt}
\setlength{\belowcaptionskip}{-1pt}
\addtolength{\subfigcapskip}{-1pt}
\begin{document}
\begin{figure}
\centering
\subfigure[\tiny{$\lambda_1=0, \lambda_2=0$}]{
\includegraphics[height=1.5in,width=2in]{A.eps}
\label{fig:A_D_subfigure501}
}
\subfigure[\tiny{$\lambda_1=0.1, \lambda_2=0.05$}]{
\includegraphics[height=1.5in,width=2in]{B.eps}
\label{fig:A_D_subfigure502}
}
\subfigure[\tiny{$\lambda_1=0.11, \lambda_2=0.05$}]{
\includegraphics[height=1.5in,width=2in]{C.eps}
\label{fig:A_D_subfigure503}
}
\subfigure[\tiny{$\lambda_1=0.18, \lambda_2=0.05$}]{
\includegraphics[height=1.5in,width=2in]{D.eps}
\label{fig:A_D_subfigure504}
}
\caption{\scriptsize (Colour online) The Fig.
}
\label{fig:one}
\end{figure}
\end{document}
No problem:pallav wrote:How to use? Any hints please.
subcaption
worked better with hyperref
than subfig
(there was at least a bug),NEW: TikZ book now 40% off at Amazon.com for a short time.