点击图片作为命令的一部分,超链接到 PDF

点击图片作为命令的一部分,超链接到 PDF

我有一个脚本,其中的命令有三个参数。它会生成一个包含两列图片的文档。我想在单击图片后打开一个 pdf,它是图片的来源。

\newenvironment{ShowSubFigure}[3]
{\begin{subfigure}{0.4\linewidth}
    \includegraphics[width=\linewidth, keepaspectratio]{#1}
       \href{run:/Path/{#3}}
    \subcaption{ \texttt{#1}}
    \end{subfigure}\hfill
\begin{subfigure}{0.4\linewidth}
    \includegraphics[width=\linewidth, keepaspectratio]{#2}
    \subcaption{\texttt{#2}}
\end{subfigure}
}  

其中 #1、#2 是我本地目录中图像文件的名称,它们也用作图片的标题。到目前为止,我的脚本都可以正常工作。

现在,我想点击图片并超链接到 pdf。#3 是 pdf 文件的名称。

\begin{document}
\begin{figure*}[ht!]\section{section_name} \subsection{subsection_name} \begin{ShowSubFigure}{first_image_name, pdf_file_name}{second_image_name}\end{ShowSubFigure}\end{figure*}

相关内容