添加图片信息来源

添加图片信息来源

如何在图像页脚和顶部描述中添加字体? 在此处输入图片描述

答案1

在此处输入图片描述

该包copyrightbox专用于注释位于图像下方、左侧或右侧的图像:

\documentclass{article}
\usepackage[font=small,skip=1ex]{caption}
\usepackage{copyrightbox}
\usepackage{url}

\begin{document}
    \begin{figure}[hb]
    \centering
    \caption{Figure caption}
\copyrightbox[b]{\includegraphics[width=0.75\linewidth]{example-image}}%
                {Source: \url{http://tex.stackexchange.com/}}
    \end{figure}
\end{document}

相关内容