1

\label を bibtex に追加して、ドキュメントで引用したときに、それをクリックして最後に参考文献にジャンプすることで \ref を参照できるようにする方法を考えていました。

例えば:

 @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}  
}

感謝と敬意

4

1 に答える 1

2

置くだけ

\usepackage{hyperref}

LaTeX ドキュメントのプリアンブルで。生成された dvi/pdf ファイルには、それぞれにハイパーリンクが自動的に含まれます。

\cite{greenwade93}

ドキュメントの参考文献セクションに移動します。

于 2010-04-08T02:40:46.023 に答える