如何添加正确的图表引用?

如何添加正确的图表引用?

假设我有一个这样的图形环境:

\begin{figure}[t]
\centering
\includegraphics[width=0.7\linewidth] {figure}
\caption{My Caption ... }
\label{fig:figure}
\end{figure}

引用此图的作者和许可证的正确方法是什么?假设我使用 Wikimedia Commons 中作者 xyz 的图片,许可证为“Creative Commons Attribution 3.0 Unported”。将此信息添加到 \caption 的唯一方法是什么?例如:\caption{My Caption ...; Author of image: xyz, Source: https://commons.wikimedia.org/.../..., Licence: Creative Commons Attribution 3.0 Unported}

答案1

你可以使用该copyrightbox包。这是一个简单的例子:

\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{ebgaramond, cabin}
\usepackage{graphicx}
\usepackage{caption, copyrightbox}
\captionsetup{justification=centering, labelfont=sc, labelsep=endash}

\begin{document}

\begin{figure*}[!h]
  \centering
  \copyrightbox[r]{\includegraphics[scale = 1.1]{Piero_di_Cosimo_3}}{\textcopyright Piero di Cosimo\\Musée Condé }
  \caption{Portrait of Simonetta Vespucci (ca 1480),\\\textit{Piero di Cosimo}}
\end{figure*}

\end{document} 

在此处输入图片描述

相关内容