Graphics, Figures & Tables ⇒ Adding Source Citation to Figure
Adding Source Citation to Figure
I have tried google this problem but I haven't been able to found a satisfactory solution yet. My problem is that in addition to the figure number I would also like to add the source. Any suggestions?
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Adding Source Citation to Figure
I have no idea what you mean by that. Please try to elaborate and possibly add ah0ps wrote:My problem is that in addition to the figure number I would also like to add the source.

Regards
Adding Source Citation to Figure
Code: Select all
\begin{figure}[!t]
\centering
\includegraphics[width=10cm]{DKinflation.pdf}
\caption{Different measures of inflation in Denmark, 2000-2011}
\label{figure:DKinflation}
\end{figure}
"Source: http://www.latex-community.org"
"Figure 1: Blahblahblah"
Adding Source Citation to Figure
Code: Select all
\documentclass{article}
\usepackage{graphicx}
\usepackage{caption}
\DeclareCaptionFormat{citation}{%
\ifx\captioncitation\relax\relax\else
\captioncitation\par
\fi
#1#2#3\par}
\newcommand*\setcaptioncitation[1]{\def\captioncitation{\textit{Source:}~#1}}
\let\captioncitation\relax
\captionsetup{format=citation,justification=centering}
\usepackage{mwe}% for example pictures
\begin{document}
\begin{figure}[ht]
\centering
\includegraphics[scale=.5]{example-image-a}
\caption{Example caption}
\end{figure}
\begin{figure}[ht]
\centering
\includegraphics[scale=.5]{example-image-b}
\setcaptioncitation{somewhere on the world wide web.}
\caption{Example caption with citation}
\end{figure}
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Adding Source Citation to Figure
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Adding Source Citation to Figure
Huh, somehow I missed that one...localghost wrote:I think a simple\caption*
command ...
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Adding Source Citation to Figure
That happens quite often to this command.cgnieder wrote:Huh, somehow I missed that one...
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10