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?
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
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