一位朋友推荐我使用elsarticle
它来做一份报告,我现在正在做这份报告。现在我需要添加一个包含图表的外部 pdf。添加图表没问题,但我想知道我是否可以通过文本引用它\ref
并创建链接?
因此,我想在文中这样提及:
图 1 显示...
图 1 应该是一个链接(我的意思是单击它会带您到文档中的图),指向文档中包含的外部 pdf。这可能吗?正如我提到的,我正在使用elsarticle
,就其他类而言,它大部分是干净的,但我希望这个问题与类无关。
任何提示都值得赞赏!
代码:
documentclass[authoryear,11pt]{elsarticle}
\begin{document}
Figure 1 shows...
\includegraphics[width=\linewidth, height=\textheight,keepaspectratio]{Figure1.pdf} % just use any PDF as a placeholder here
\end{document}
答案1
放在\includegraphics
中间\begin{figure} --- \end{figure}
,并添加一个标题,\label
你可以事后参考:)
\documentclass[authoryear,11pt]{elsarticle}
\begin{document}
Figure \ref{fig:document} shows\ldots
\begin{figure}[h!]
\includegraphics[width=\linewidth, height=\textheight,keepaspectratio]{Figure1.pdf} %
\caption{\label{fig:document}}
\end{figure}
\end{document}
无关笔记\ldots
:使用比明确输入更好...
。