我无法将参考资料放入 LaTeX 的图中。
我的文档类别是:
\documentclass[runningheads,a4paper]{llncs}
\usepackage{graphicx}
我按照以下方式将图形插入到我的文档中:
\begin{figure}
\centering
\includegraphics[height=7cm]{ICS_toput}
\caption{Components of ICS}
\label{fig:example}
\end{figure}
现在我需要为该图添加参考(来源)。
我怎样才能实现这个目标?
答案1
对于不比图像本身更宽的图像源,您可以使用简单的方法tabular
:
\documentclass{llncs}
\usepackage{graphicx}
\newcommand{\imgsourcefont}{\normalfont\footnotesize\itshape}
\begin{document}
\begin{figure}
\centering
\begin{tabular}{@{}l@{}}
\includegraphics[height=7cm]{example-image} \\
\imgsourcefont Image source \ldots
\end{tabular}
\caption{Components of ICS}
\end{figure}
\end{document}
您可以定义一个全局变量\imgsourcefont
来确保这些源设置之间的一致性。如果您的源比图像更宽,则可以将内容设置为一p{<len>}
列,或者完全设置为其他内容。
替代参考:我需要获取图片。有什么方法可以做到吗?