图中显示来源和注释是否正确?

图中显示来源和注释是否正确?

我想显示图像的来源并且还想添加注释,我该怎么做,我可以使用 2 还是只使用字体?

\documentclass{article}

\usepackage[capposition=top]{floatrow}

\begin{document}

\begin{figure}
% \centering% default with `floatrow`
\rule{1cm}{1cm}% placeholder for `\includegraphics`
\caption{A figure}
\floatfoot{A note}
\end{figure}

\end{document}

编辑1:

我在网上搜索是否适合在图片中放置注释和来源,但我只找到带有其中一个的图片,无论是来源还是注释,我可以同时放置两者吗?

答案1

有多种方法可以插入图像源。以下方法不使用该\floatfoot功能,因此与 无关floatrow

\documentclass{article}
\usepackage{graphicx}
\usepackage[capposition=top]{floatrow}

\newcommand{\includegraphicswithsource}[3][]{%
  {\scriptsize\begin{tabular}{@{}r@{}}
   \includegraphics[#1]{#2}\\#3
   \end{tabular}}%
}

\begin{document}

\begin{figure}
% \centering% default with `floatrow`

\includegraphicswithsource[width=0.4\textwidth]{example-image}{Source: my basement}

\caption{A figure}
\floatfoot{A note}

\end{figure}

\end{document}

在此处输入图片描述

相关内容