使用 fancytooltips 包的问题

使用 fancytooltips 包的问题

我正在尝试使用 fancytooltips 包来创建包含数学公式的评论/提示(我使用 MikTeX 2.9)。我按照本指南的指示行事beamer 中的鼠标悬停事件:将鼠标悬停在 \eqref 上,会弹出包含原始方程的注释。下面的代码取自上面的链接,并进行了一些修改。

代码:

\documentclass[russian]{article} 
\usepackage{amsthm,amsmath,graphicx,color}

\usepackage{tikz}
\usepackage{hyperref}
\usepackage[inactive,mouseover,preview]{fancytooltips}

\begin{document}

If $f(z)$ is a meromorphic function inside and on some closed contour $C$, and $f$ has no zeros or poles on $C$, then
\begin{equation}
\label{eq:1}
\oint \frac{f'(z)}{f(z)} dz = 2\pi i(N-P)
\end{equation}

$N$ and $P$ of Equation \eqref{eq:1} denote respectively the number of zeros and poles of $f(z)$ inside the contour $C$, with each zero and pole counted as many times as its multiplicity, respectively order, indicates.


\end{document}

当我编译文件 myfile.tex 时出现错误:

! Package pdftex.def Error: 'File myfile-a-crop.pdf' not found.

结果,得到的不是所需的公式,而是这张图:

在此处输入图片描述

到目前为止,我还没有成功修复这个错误。这是我试图得到的结果的一个示例:

在此处输入图片描述

我的最终 PDF 文件将包含许多数学任务,并以工具提示的形式提供答案。有没有简单的方法可以实现这一点?

相关内容