超链接壁纸

超链接壁纸

我一直在使用

\usepackage{wallpaper}
\ULCornerWallPaper{0.1}{image.jpg}

我想知道是否有办法向图像添加超链接,以便单击图像即可打开 URL。

答案1

根据给定的 定义,\ULCornerWallPaperwallpaper将定义一个新命令。这个新命令有一个额外的强制参数。使图片“可点击”是通过命令 完成的\href

该包mwe提供了示例图片,还可加载blindtext填充文本。

\documentclass{article}
\usepackage{mwe}
\usepackage{wallpaper}
\usepackage{hyperref}
\newcommand{\ULCornerWallPaperWithLink}[3]{%
  \AddToShipoutPicture{%
    \AtPageLowerLeft{%
      \parbox[b][\paperheight]{#1\paperwidth}{\href{#2}{%       
        \includegraphics[width=#1\paperwidth,height=#1\paperheight,%
        keepaspectratio]{#3}}%
        \vfill%
      }
    }
  }
}

\ULCornerWallPaperWithLink{0.1}{http://tex.stackexchange.com/}{example-image-a}

\begin{document}
\blindtext[10]
\end{document}

相关内容