How to cite papers in Arxiv in IEEE's template

How to cite papers in Arxiv in IEEE's template

    This article records how to cite papers in Arxiv in the IEEE Transactions template and record specific paper format information.

1. What is the format of citing papers in Arxiv in the IEEE template?

    In the IEEE Transactions template, if I want to cite a paper in Arxiv, what is the specific format?

在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. 7177, Jan. 1994. [Online]. Available: https://www.jstor.org/stable/43692582

     This article will document how to achieve this effect.

2. What format should be used to write the information of this document in the bib file?

     To cite this paper in the bib file, you first need to know the doi information of this paper. For details, you can check the information on the Arxiv web page, such as the following:

insert image description here

     Then use the doi information to convert it into the corresponding bib information on the website https://www.doi2bib.org .
     Then write the references in the corresponding format in the bib file:

您可以在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. How to cite this paper in the latex file of the paper?

     The way of quoting is as follows:

您可以在latex中使用\cite{
    
    arxiv编号}来引用这篇论文,例如:

我们参考了Nettelblad等人的方法\cite{
    
    1612.06830}来优化I/O吞吐量。

您还需要在latex文档的末尾加上\bibliographystyle{
    
    IEEEtran}和\bibliography{
    
    bib文件名}来生成参考文献列表。

4. How to display DOI information in references?

\bibliographystyle{ieeetr}I use the format      in latex arxivto cite the papers in the paper as references, but doi is not displayed, you can solve it according to the following solution:


根据网络搜索结果¹²³,在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.bibitem

format.authors \"author\" output.check

author format.key output

output.year.check

new.block

format.title \"title\" output.check

new.block

crossref missing$

{
    
     journal emphasize \"journal\" output.check

format.vol.num.pages output

format.doi output

}

{
    
     format.article.crossref output.nonnull

format.pages output

}

if$

new.block

note output

fin.entry

}

这样可以生成带有超链接的doi。您可以根据自己的需要选择一种方法。

Online references:

(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.

Guess you like

Origin blog.csdn.net/weixin_43981621/article/details/130951096