BibTeX 是一个使用数据库的的方式来管理参考文献程序, 用于协调LaTeX的参考文献处理.
BibTeX 文件的后缀名为 .bib . 先来看一个例子:
@article{Gettys90,
author = {Jim Gettys and Phil Karlton and Scott McGregor},
title = {The {X} Window System, Version 11},
journal = {Software Practice and Experience},
volume = {20},
number = {S2},
year = {1990},
abstract = {A technical overview of the X11 functionality. This is an update of the X10 TOG paper by Scheifler \& Gettys.}
}
在文献网站上都有导出bib数据库格式的链接,
把所有的引用卸载一个.bib文件中,例如test.bib,
然后在文章中导入:\bibliography{test}
就完成了文章引用了~