当我将鼠标悬停在 PDF 中的引用编号上时,会出现一个黄色弹出窗口,显示作者和出版年份,如下图所示: 但是我希望弹出窗口也能显示参考文献的标题。我该怎么做?
一些附加信息:文件中的相应条目egbib.bib
如下所示:
@inproceedings{he2017mask,
author = "He, Kaiming and Gkioxari, Georgia and Doll{\'a}r, Piotr and Girshick, Ross",
booktitle = "{Computer Vision (ICCV), 2017 IEEE International Conference on}",
organization = "IEEE",
pages = "2980--2988",
title = "{Mask r-cnn}",
year = "2017"
}
正在使用的文档类是\documentclass{bmvc2k}
(BMVC 样式),相应的bmvc2k.cls
文件包含以下行,这可能是问题的一部分:
% hook into the natbib/hyperref citation hooks.
\ifbmv@extabs\else
\ifbmv@pdf
\newbox\bmv@citebox
\let\hyper@natlinkend=\relax
\def\hyper@natlinkstart#1{%^
\Hy@backout{#1}%^
\xdef\bmv@annotation{\NAT@all@names\space\NAT@date}%^
\message{BMVC cite \bmv@annotation}%^
%\fbox{\bmv@annotation}%^
\bmv@annottrue%^
\hyper@linkstart{cite}{cite.#1}%^
\bmv@annotfalse%^
\def\hyper@nat@current{#1}%^
}
\def\hyper@natlinkend{%^
\Hy@endcolorlink %^
%\pdfendlink
}
\fi
\fi