在 bib 中使用 Eprint 和 arXiv 论文

在 bib 中使用 Eprint 和 arXiv 论文

sample-base.bib文件中包含以下 bib 条目

@Eprint{Radford16,
  author    = {A. Radford and L. Metz and S. Chintala},
  title     = {Unsupervised Representation Learning with Deep Convolutional Generative Adversarial Networks},
  year      = 2016,
  eid = {arXiv:1511.06434},
  archivePrefix = {arXiv},
  eprint = {1511.06434},
}

以及以下标题

\documentclass[conference]{IEEEtran}
\IEEEoverridecommandlockouts
...
\bibliographystyle{plain}
\bibliography{sample-base}
\end{document}

我看到了这个遗漏的输出arXiv和数字。

[41] A. Radford, L. Metz, and S. Chintala. Unsupervised representation
learning with deep convolutional generative adversarial networks, 2016.

我该如何修复它?

答案1

这个怎么样?

@eprint{Radford16,
  author =       {A. Radford and L. Metz and S. Chintala},
  title =        {Unsupervised Representation Learning with Deep
                  Convolutional Generative Adversarial Networks},
  year =         2016,
  note =         "arXiv 1511.06434",
}

在此处输入图片描述

相关内容