我正在使用ocgx2
它来切换复杂图表中元素的可见性tikz
。
此外,我想解释一下当有人单击 pdf 工具提示中的开关时会发生什么。
但是,我在ocgx2
与\pdftooltip
包中的结合时遇到了困难pdfcomment
。请考虑以下 MWE:
\documentclass{standalone}
\usepackage[tikz]{ocgx2} % requires Adobe Reader as pdf viewer
\usepackage{pdfcomment}
\begin{document}
\begin{tikzpicture}
\begin{scope}[ocg={name=Orange Circle, ref=tikzref, status=visible}]
\fill[orange] (0,0) circle (1);
\end{scope}
\node[draw, fill=white, switch ocg={tikzref}] at (2,0)
{\pdftooltip{\colorbox{gray!10}{Switch}}{Click here to toggle the visibility of the orange circle}};
\end{tikzpicture}
\end{document}
在 Adobe Acrobat Reader DC 中打开文档(大多数其他查看器不起作用):
如您所见,当我将鼠标悬停在灰色区域上时,我可以看到工具提示。但我无法切换可见性。当我将光标移动到黑色边框和灰色区域之间的白色边框时,我可以切换可见性,但没有看到工具提示。
有可能两者兼而有之吗?