我是靠谱客的博主 友好野狼,最近开发中收集的这篇文章主要介绍LaTeX插入参考文献,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

LaTeX插入参考文献,可以使用BibTex,也可以不使用BibTex。


方法一:不使用BibTeX

先在文章文章末尾写好需要插入的参考文献,逐一写出,例如:

begin{thebibliography}{99}
bibitem{ref1}Zheng L, Wang S, Tian L, et al., Query-adaptive late fusion for image search and person re-identification, Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2015: 1741-1750.
bibitem{ref2}Arandjelović R, Zisserman A, Three things everyone should know to improve object retrieval, Computer Vision and Pattern Recognition (CVPR), 2012 IEEE Conference on, IEEE, 2012: 2911-2918.
bibitem{ref3}Lowe D G. Distinctive image features from scale-invariant keypoints, International journal of computer vision, 2004, 60(2): 91-110.
bibitem{ref4}Philbin J, Chum O, Isard M, et al. Lost in quantization: Improving particular object retrieval in large scale image databases, Computer Vision and Pattern Recognition, 2008. CVPR 2008, IEEE Conference on, IEEE, 2008: 1-8.
end{thebibliography}

上面列出了5个参考文献,{thebibliography}的选项99指的是参考文献的个数最大为99,可以设置为别的数。


在正文中引用参考文献的方法是:

cite{ref1}

cite{ref1, ref5}

这样编译后就可以得到:

[1]

[1, 5]



方法二:使用BibTeX

这种方法需要建立参考文献数据库,引用的时候调用所需要的参考文献。这里先不详细说明了。



最后

以上就是友好野狼为你收集整理的LaTeX插入参考文献的全部内容,希望文章能够帮你解决LaTeX插入参考文献所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(77)

评论列表共有 0 条评论

立即
投稿
返回
顶部