I'm trying to create a tooltip with the fancytooltips package, the compilation is going well, but I don't get any tooltips.
I'm on Windows 7 with MikTeX. I don't know if this is really necessary, but I installed PERL http://www.activestate.com/activeperl with the Config::IniFiles module.
I created the file test-tip.pdf containing a rectangle triangle created with tikz with this code:
\documentclass{standalone}
\pagestyle{empty}
\usepackage[createtips]{fancytooltips}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw(0,3)--(0,0)--(4,0)--cycle;
\end{tikzpicture}
\end{document}
Then, I compiled the main file with the "inactive" option as indicated in this thread: Fancytooltip error during fancy-preview because otherwise the compilation fails with this error:
LaTeX Warning: File `fancytipmark. pdf' not found on input line 5. ! Package pdftex. def Error: File fancytipmark. pdf not found: using draft sett
The main file is this:
\documentclass{article}
\usepackage[filename=test-tip,movetips,mouseover]{fancytooltips}
\begin{document}
Le \tooltip{triangle rectangle}1
\end{document}
- What should I correct in my code?
- How do I also get a simple text tooltip?