bibtex和label / ref

时间:2010-04-08 02:35:15

标签: latex bibtex

我想知道如何将\ label添加到bibtex中,这样当我引用我的文档时,我也可以通过点击它并最后跳到参考书目来引用它?

例如:

 @inproceedings{Boser92atraining,  
    abstract = {A training algorithm that maximizes the margin  between the training patterns and the decision  boundary is presented. },  
    author = {Boser, Bernhard E. and Guyon, Isabelle M. and Vapnik, Vladimir N.},  
    booktitle = {Proceedings of the 5th Annual ACM Workshop on Computational Learning Theory},  
    citeulike-article-id = {4669426},  
    citeulike-linkout-0 = {http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.21.3818},  
    keywords = {learning, svm},  
    pages = {144--152},  
    posted-at = {2010-04-07 21:30:39},  
    priority = {2},  
    title = {A Training Algorithm for Optimal Margin Classifiers},  
    url = {http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.21.3818},  
    year = {1992}  
}

谢谢和问候

1 个答案:

答案 0 :(得分:2)

刚刚放

\usepackage{hyperref}

在LaTeX文档的序言中。生成的dvi / pdf文件应自动包含每个

的超链接
\cite{greenwade93}

在您的文件中参考书目部分。

相关问题