How do I place text RIGHT below an image (above the caption) within subfig? Here Is my code:
\documentclass{article}
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{subfig}
\begin{document}
\captionsetup[subfigure]{labelfont=bf,textfont=normalfont,singlelinecheck=off,justification=raggedright}
\captionsetup[figure]{singlelinecheck=off}
\begin{figure}
\subfloat[\textit{\textit{D. pulex}}
\newline \tiny \url{commons.wikimedia.org/wiki/File:Daphnia_pulex.png}
\newline \tiny Photos by Paul Hebert]{\label{dpulex}
\includegraphics[width=0.48\textwidth]{dpulex.png}
}
\end{figure}
\end{document}
Here is what it prints:

So I'd like those two lines written in tiny to appear below the image and above "(a) D. pulex". Any help will be appreciated.



\\[-.5\baselineskip]instead of the regular\\I have. – Werner Apr 11 '13 at 02:43