如何在IEEE的模板中引用Arxiv中的论文
本文章记录如何在IEEE Transactions的模板中,引用Arxiv中的论文,记录具体的论文格式信息。
目录
- 如何在IEEE的模板中引用Arxiv中的论文
- 1.在IEEE的模板中引用Arxiv中的论文格式是怎么样的呢?
- 2.在bib文件中应该用怎么样的格式写这篇文献的信息呢?
- 3.在论文的latex文件中如何引用这篇论文呢?
- 4.如何让参考文献中显示DOI信息呢?
1.在IEEE的模板中引用Arxiv中的论文格式是怎么样的呢?
IEEE Transactions的模板中,想要引用Arxiv中的论文,具体的格式是怎么样的呢?
在IEEE的投稿模版中引用arxiv中的论文,格式是这样的:作者姓名缩写. 姓氏, “论文标题,” arXiv:arXiv编号 [主题], 月份 年份, DOI.例如:J. Nettelblad and C. Nettelblad, “CannyFS: Opportunistically Maximizing I/O Throughput Exploiting the Transactional Nature of Batch-Mode Data Processing,” arXiv:1612.06830 [cs], Dec. 2016, doi: 10.4208/jcm.1401-m4214.如果没有DOI,可以用URL代替,但要加上“Online”和“Available:”的标注,例如:Z. Sheng, “A preconditioner determined by a subdomain covering the interface,” J. Comput. Math., vol. 12, no. 1, pp. 71–77, Jan. 1994. [Online]. Available: https://www.jstor.org/stable/43692582
本文将记录如何实现这种效果。
2.在bib文件中应该用怎么样的格式写这篇文献的信息呢?
在bib文件中要引用这篇论文,首先需要知道这篇论文的doi信息,具体可以查看Arxiv网页中的信息,例如下面这个:
接着在网站https://www.doi2bib.org中利用doi信息转换为对应的bib信息。
接着在bib文件中写出对应格式的参考文献:
您可以在bib文件中按照以下格式写:@misc{arxiv编号,author = {作者姓名},title = {论文标题},howpublished = {arXiv:arXiv编号 [主题]},month = {月份},year = {年份},doi = {DOI},url = {URL}}例如:@misc{1612.06830,author = {J. Nettelblad and C. Nettelblad},title = {CannyFS: Opportunistically Maximizing I/O Throughput Exploiting the Transactional Nature of Batch-Mode Data Processing},howpublished = {arXiv:1612.06830 [cs]},month = {Dec},year = {2016},doi = {10.4208/jcm.1401-m4214}}
3.在论文的latex文件中如何引用这篇论文呢?
引用的方式如下所示:
您可以在latex中使用\cite{arxiv编号}来引用这篇论文,例如:我们参考了Nettelblad等人的方法\cite{1612.06830}来优化I/O吞吐量。您还需要在latex文档的末尾加上\bibliographystyle{IEEEtran}和\bibliography{bib文件名}来生成参考文献列表。
4.如何让参考文献中显示DOI信息呢?
我在latex中用的\bibliographystyle{ieeetr}
格式来引用arxiv
中的论文作为参考文献,但是不显示doi,可以按照如下的方案解决:
根据网络搜索结果¹²³,在latex中用ieeetr格式引用arxiv中的论文时,有两种方法可以显示doi:- 一种是在bib文件中将doi字段改为note字段,并用\\url{...}包围doi,例如:@ARTICLE {r6,author= {A. C. Seabaugh and Q. Zhang},journal= {Proceedings of the IEEE},title= {Low-Voltage Tunnel Transistors for Beyond CMOS Logic},year= {2010},volume= {98},number= {12},pages= {2095-2110},keywords= {CMOS logic circuits;MOSFET;},note= {doi: \\url{10.1109/JPROC.2010.2070470}},ISSN= {0018-9219},month= dec,}- 另一种是修改ieeetr.bst文件,添加一个format.doi函数,并在各种条目类型中调用它,例如:FUNCTION {format.doi}{ doi empty${ \"\" }{ \"doi: \\url{\" doi * \"}\" * }if$}FUNCTION {article}{ output.bibitemformat.authors \"author\" output.checkauthor format.key outputoutput.year.checknew.blockformat.title \"title\" output.checknew.blockcrossref missing${ journal emphasize \"journal\" output.checkformat.vol.num.pages outputformat.doi output}{ format.article.crossref output.nonnullformat.pages output}if$new.blocknote outputfin.entry}这样可以生成带有超链接的doi。您可以根据自己的需要选择一种方法。
网上参考资料:
(1) DOI in IEEEtran bibliography - TeX - LaTeX Stack Exchange. https://tex.stackexchange.com/questions/67444/doi-in-ieeetran-bibliography.
(2) bibliographies - DOI in reference - TeX - LaTeX Stack Exchange. https://tex.stackexchange.com/questions/367735/doi-in-reference.
(3) Hyperlink in DOI in IEEEtran Bibliography - TeX - LaTeX Stack Exchange. https://tex.stackexchange.com/questions/394811/hyperlink-in-doi-in-ieeetran-bibliography.