对于我的论文,我试图将工具提示或 PDF 注释添加到我的引文中,这样您就不必转到参考书目来检查条目。因此,我想要做的是将条目的信息(大致与参考书目中显示的信息一样)添加到工具提示或注释中。但是,当我尝试使用 pdfcomment 包结合 Biblatex 执行此操作时,我在工具提示/注释中得到的只是 Biblatex 键。
这是一个最小的工作示例:
\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{biblatex}
\usepackage{pdfcomment}
\begin{filecontents}{\jobname.bib}
@article{Becke.1993,
author = {Becke, Axel D.},
year = {1993},
title = {Density-functional thermochemistry. III. The role of exact exchange},
pages = {5648},
pagination = {page},
volume = {98},
number = {7},
issn = {00219606},
doi = {10.1063/1.464913},
journal = {J. Chem. Phys.}
}
\end{filecontents}
\bibliography{\jobname}
\begin{document}
I want to add a tooltip to my references like Ref.~\cite{Becke.1993}\pdftooltip{\textsuperscript{o}}{\protect\fullcite{Becke.1993}}.
\printbibliography
\end{document}
如上所述,这会导致在工具提示中写入“Becke.1993”,而不是“Axel D. Becke, Density-Functional ...”
有人能帮我解决这个问题吗?谢谢!