是否可以将图像包含在 TeX 中,以便生成的 PDF 可点击并显示参考?
答案1
只需将图像包裹在\href
[1]中
\documentclass{article}
\usepackage{hyperref}
\usepackage[demo]{graphicx}
\begin{document}
\href{http://www.google.de}{\includegraphics{image}}% [1]
\begin{figure}%[2]
\centering
\href{http://www.google.de}{\includegraphics{image}}
\caption{Non linked caption.}
\end{figure}
%\begin{figure}%[3]
% \centering
% \href{http://www.google.de}{%
% \includegraphics{image}
% \caption{Linked captions won’t work.}
% }
%\end{figure}
\begin{figure}%[4]
\centering
\href{http://www.google.de}{\includegraphics{image}}
\caption{\href{http://www.google.de}{Workaround for linked captions}}
\end{figure}
\begin{figure}%[5]
\href{http://www.google.de}{%
\parbox{\textwidth}{
\centering
\includegraphics{image}
\caption{Linked captions won’t work.}
}
}
\end{figure}
\begin{figure}%[6]
\centering
\href{http://www.google.de}{%
\scalebox{0.5}{
\parbox{\textwidth}{
\centering
\textbf{A Title}\\
\includegraphics{image}}
}
}
\end{figure}
\end{document}
要添加标题,只需{figure}
照常使用环境并放入链接的图形 [2]:将标题\href
也换入会导致错误,因为输出将包含不能作为链接一部分的段落 [3],所以您也必须链接标题 [4],或者必须将整个{figure}
内容放在可以链接的 中\parbox
[5]。[6] 展示了如何添加标题(不是标题)并使用 缩放文本和图像\scalebox
。
答案2
当然:
\documentclass{article}
\usepackage[demo]{graphicx}% demo option just for the example
\usepackage{hyperref}
\begin{document}
\href{http://www.tex.stackexchange.com}{\includegraphics{name}}
\end{document}
答案3
当然。
\documentclass{article}
\usepackage{hyperref,graphicx}
\begin{document}
\href{http://www.dante.de}{\includegraphics[width=5cm]{tiger}}
\end{document}