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