We usually write
Code: Select all
\begin{figure}
\includegraphics[...]
\caption{A caption}
\label{fig:label1}
\end{figure}
I would now like to put another field under / (at the top of) the figure: the URL source of it.
How can I do this? Thanks.
Code: Select all
\begin{figure}
\includegraphics[...]
\caption{A caption}
\label{fig:label1}
\end{figure}
Code: Select all
\begin{figure}[!ht]
\centering
\parbox{0.75\linewidth}{%
Any Text that you want above \ldots\\[\smallskipamount]
\rule{\linewidth}{0.75\linewidth}\\[\smallskipamount]
\ldots or below the image.
}
\caption{A caption}\label{fig:label1}
\end{figure}
Code: Select all
\begin{figure}[f]
\centering
\parbox{0.75\linewidth}{%
Any Text that you want above \ldots\\[\smallskipamount]
\rule{\linewidth}{0.75\linewidth}\\[\smallskipamount]
\ldots or below the image.
}
\caption{A caption}\label{fig:label1}
\provenanceurl{http://www.foo.com/bar.jpg}
\end{figure}