I would like to include some bib references as tooltips in my beamer slides. (I do NOT want a tooltip to appear for every \cite{}.)
I have started to use pdfcomment for tooltips as it seemed the simplest of those I looked at (cooltooltips, fancytooltips, pdfcomment).
I'm using Win 7, WinEdt 10, MikTeX 2.9. I've been trying PDFLaTex + Biber + PDFLaTeX.
Here is a MWE:
\documentclass{beamer}
\usepackage[natbib=true,backend=biber]{biblatex}
\usepackage{pdfcomment}
\usepackage{filecontents}
\begin{filecontents}{bib.bib}
@BOOK{dav-mac-93,
AUTHOR = "Russell Davidson and James G. MacKinnon",
TITLE = "Estimation and Inference in Econometrics",
PUBLISHER = "Oxford University Press",
YEAR = "1993",
address = "New York",
}
\end{filecontents}
\bibliography{bib}
\begin{document}
\begin{frame}
I want the reference in this tooltip to be resolved. \citet{dav-mac-93}
\pdfcomment{Resolve this reference: \citet{dav-mac-93}}
\printbibliography
\end{frame}
\end{document}
Is it possible to compile bib references in pdfcomment, or do I need another package?
\MyTip) for the tooltip and leave the normal cite command unchanged. – samcarter_is_at_topanswers.xyz Sep 15 '17 at 16:49A hack fix for my MWE thus edits the original \pdfcomment to read:
\pdfcomment{Resolve this reference: \texorpdfstring{\citet{dav-mac-93}}{Davidson and MacKinnon (1993)}}
– Colin Rowat Sep 25 '17 at 13:36