带有工具提示的内部链接

带有工具提示的内部链接

我怎样才能将acronym包裹与pdfcomment包裹结合起来?

我希望在将鼠标悬停在缩写词链接上时出现工具提示。我该如何组合它?

\documentclass{article}
\usepackage{hyperref}
\usepackage[all]{hypcap}
\usepackage[printonlyused]{acronym}
\usepackage{pdfcomment}

\begin{document}
\section{Content}
I'm using a \ac{PKI}... A \pdftooltip{special}{With a tool tip!} word.

And here comes something about \pdftooltip{\acp{CA}}{\aclp{CA}}, but this don't work.

\section{Acronyms}
\begin{acronym}
  \acro{PKI}{Public Key Infrastructure}
  \acro{CA}{Certificate Authority}
\end{acronym}
\end{document}

答案1

问题是指向首字母缩略词列表的 pdf 超链接覆盖了工具提示。因此,您看不到首字母缩略词的工具提示消息,但可以看到超链接(即第 1 页)的消息。如果您使用nohyperlinks首字母缩略词包的选项,pdf 超链接将被关闭,您将看到首字母缩略词的工具提示消息。

相关内容