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

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



你可能感兴趣的:(Markdown/LaTeX)