如何使用NoteExpress在LaTeX中建立论文的参考文献

来自NoteExpress知识库
2020年6月12日 (五) 10:09Admin讨论 | 贡献的版本

(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航搜索

导出NE中题录为BibTeX格式


选中NE中需要导出的参考文献,点击[文件] - ->[导出题录], 选择文件导出的位置。需查看导出时编码是否是UTF-8(默认是UTF-8编码),选择使用样式“BibTeX”,开始导出。导出的文件为. txt,然后更改文件后缀名为 .bib,如:ne.bib。


Latax.jpg


CTeX(Textwork、TextMaker)中使用 BibTeX


建立好 .bib 文件后就可以按照常规使用 BibTeX 的方式建立文献参考了。

1. 编写 LaTeX 代码;

2. 加入 BibTeX 相关代码,如:

a. \bibliographystyle{IEEEfull} (IEEEfull可以替换为你所投杂志的BTS文件名,其控制引用参考文献格式)

b. \cite{AckermannAngus-172} (正文需要引用的引文,在NE里选择导出的题录,右键复制题录-复制BibTex引用 )

c. \bibliography{ne} % (ne是NoteExprss导出的文件名,即你的bib格式)


Latax2.jpg



其他说明:


NE导出的BibTeX格式:


@article{AckermannAngus-172,

Author = {Ackermann, Klaus and Angus, Simon D.},

Title = {A Resource Efficient Big Data Analysis Method for the Social Sciences: The Case of Global IP Activity},

Journal = {Procedia Computer Science},

Volume = {29},

Number = {0},

Pages = {2360-2369},

DOI = {10.1016/j.procs.2014.05.220},

Abstract = {This paper presents a novel and efficient way of analysing big datasets used in social science research. We provide and demonstrate a way to deal with such datasets without the need for high performance distributed computational facilities. Using an Internet census dataset and with the help of freely available tools and programming libraries, we visualize global IP activity in a spatial and time dimension. We observe a considerable reduction in storage size of our dataset coupled with a faster processing time.},

Keywords = {Big Data; Social Sciences; Internet Census; GIS; Memory Reduction},

Year = {2014} }


1. 第一行@article 告诉 BibTeX 这是一个期刊类型的参考文献. 还有其它格式, 例如 article, book(书), incollection(书的章节), mastersthesis, phdthesis(学位论文), techreport(报告), unpublished(未出版作品), patent(专利), collection(论文集), inproceedings(会议论文) 等等.


2. 接下来的”AckermannAngus-172”, 就是你在正文中应用这个题录的引文.


3. 其它就是参考文献里面的具体内容。