將 pdf 包含到 Latex 中並引用它

將 pdf 包含到 Latex 中並引用它

一位朋友推薦我使用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:使用比顯式鍵入更好...

相關內容