如何插入可用作链接的图像

如何插入可用作链接的图像

是否可以将图像包含在 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}

答案4

我使用了一个从谷歌下载的 orcid 徽标图片的命令:

\href{https://orcid.org/0000-0001-9743-2851
}{\includegraphics[width=0.15in,height=0.15in]{orcid.jpg}}

以下是我使用的图片

在此处输入图片描述

相关内容