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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis