代码之家  ›  专栏  ›  技术社区  ›  Tim unnamed eng

bibtex和标签/参考

  •  1
  • Tim unnamed eng  · 技术社区  · 15 年前

    我想知道如何将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 回复  |  直到 15 年前
        1
  •  2
  •   Yuji    15 年前

    只放

    \usepackage{hyperref}
    

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

    \cite{greenwade93}
    

    在你的文献中的书目部分。

    推荐文章