超链接 + pdftooltip:内容在鼠标悬停时显示工具提示,同时为可点击的超链接

超链接 + pdftooltip:内容在鼠标悬停时显示工具提示,同时为可点击的超链接

我希望一些超链接内容在鼠标悬停时也显示工具提示。简单的用例:当引用时Section 1,工具提示可以显示部分名称Introduction To This Document,或者使用图形时,它可以显示标题。我以前见过这个问题的某些变体,但没有找到解决方案。我更喜欢使用简单的工具提示(以确保更广泛的兼容性),因此想使用该pdfcomment包。当使用 Sumatra 和 Adob​​e 测试我的文档时,超链接可以工作,但工具提示不会出现。

\documentclass[11pt]{scrartcl}
\usepackage{pdfcomment}
\usepackage{hyperref}
\begin{document}
    \pdftooltip{Plain text with tooltip}{The tooltip text}
    \pdftooltip{\hyperlink{target}{hyperlinked text within tooltip}}{The tooltip text}
    \hyperlink{target}{\pdftooltip{tooltipped text within hyperlink}{The tooltip text}}
    \newpage
    \hypertarget{target}{hyperlink target text}
\end{document}

相关内容