bibtex 书目中的超链接

bibtex 书目中的超链接

我用它BibTex来编写文档的参考书目。我还希望当我引用一些参考文献时,pdf 中会出现一个超链接,这样当单击它时,它会重定向到相应的参考书目项目。

问题在于,根据我的实际设置,在参考书目条目旁边会出现一系列数字,这些数字会重定向到我引用该特定条目的每个页面。例如:

[9] John C. Strikwerda. Finite Difference Schemes and Partial Differential Equations. Society for Industrial and Applied Mathematics, Philadelphia, 2004. 16, 19, 20

注意末尾的数字 16、19、20。这些实际上是我引用该书的页面的引用。我希望它们消失。页面中的引用显示为[9]数字 9 是对参考书目条目的引用。这是我想要的设置。

重现我的问题的示例:

\documentclass[a4paper,11pt,twoside]{book}

\usepackage[pagebackref=true]{hyperref}
\hypersetup{
    colorlinks=true,       
    linkcolor=blue,          
    citecolor=green,       
    filecolor=magenta,      
    urlcolor=blue          
}

\begin{document}
 %citation
 An interesting book \cite{vnewmann}

 % biblio
 \bibliographystyle{plain}
 \bibliography{trashbib}

\end{document}

文件trashbib.bib如下

@article{vnewmann,
   author={{V}on{N}ewmann, {J}. and {R}ichtmyer, {R}. {D}.},
   title={{A} {M}ethod for the {N}umerical {C}alculation of {H}ydrodynamic {S}hocks},
   journal={{J}ournal of {A}pplied {P}hysics},
   volume={21},
   year = 1950,
   pages = {232-237}
 }

有人知道如何删除参考书目项目旁边的数字(引用文本)同时保留文本中对参考书目的引用吗?

答案1

这些数字被称为“反向引用”。删除该[pagebackref=true]位,它们就会消失。

相关内容