图片来源列表

图片来源列表

将图像来源放置在文档中的最佳方式是什么?我有一些图像,它们按预期显示\listoffigures,但我如何/应该指出它们的来源?我是否应该将来源添加到参考书目中并在图表\cite{...}中使用?\caption

答案1

在学术出版物中,通常会在标题中(大多在标题末尾)注明图片来源。无论如何,只要您在工作中使用了图片,就需要将其放入参考书目中。

答案2

要显示比正确标题更不显眼的图像源,请使用浮行包及其\floatfoot宏。

\documentclass{article}

\usepackage{floatrow}

\begin{document}

\begin{figure}
\rule{1cm}{1cm}
\caption{A figure}
\floatfoot{Source: (Citation command)}
\end{figure}

\end{document}

相关内容