您是否应该使用源中的 bibtex 条目?

您是否应该使用源中的 bibtex 条目?

我想引用文章。可以直接下载一个bibtex条目,如下:

@inbook{Kleinhenz2017,
author = {Julie E. Kleinhenz and Aaron Paz},
title = {An {ISRU} propellant production system for a fully fueled {Mars} {Ascent} {Vehicle}},
booktitle = {10th Symposium on Space Resource Utilization},
chapter = {},
pages = {},
doi = {10.2514/6.2017-0423},
URL = {https://arc.aiaa.org/doi/abs/10.2514/6.2017-0423},
eprint = {https://arc.aiaa.org/doi/pdf/10.2514/6.2017-0423}
}

这利用了 @inbook 条目,但没有提供任何章节或页面。在输出中,我仍然得到只有空格的章节和页面(这是意料之中的,因为这是一个必填字段)。

输出

其他文章引用此内容

1Kleinhenz JE 和 Paz A.,“为火星上升飞行器提供充足燃料的 ISRU 推进剂生产系统”,第 10 届空间资源利用研讨会,AIAA 论文 2017-0423,2017 年 1 月。https://doi.org/10.2514/6.2017-0423

这是第一个引用另一篇文章

我尝试使用@inproceedings条目,

@inproceedings{Kleinhenz2017,
title = {An {ISRU} propellant production system for a fully fueled {Mars} {Ascent} {Vehicle}},
author = {Kleinhenz, Julie E. and Paz, Aaron},
booktitle = {10th Symposium on Space Resource Utilization},
year = {2017},
month = {January},
doi = {10.2514/6.2017-0423},
series = {{AIAA 2017-0423}}
}

结果(忽略数字和蓝色框)

输出2

考虑到这一点,我的问题如下:

  1. 您是否应该保留源提供的 bibtex 条目,还是创建自己的条目?
  2. 哪个条目最能复制引文另一篇文章

答案1

bibtex格式是 TeX 特有的,并且无法保证提供条目的外部源.bib会正确使用它。这意味着任何外部收集的bibtex内容都应谨慎使用。它来自“源”这一事实并不代表可靠性,因为它假设源知道格式正确bibtex是什么,而这通常不是真的。

那么在实践中你应该怎么做呢?当然,.bib从 DOI 获取条目是一个好的开始,但我在使用它们之前总是会检查它们,以确保它们是正确的。

为了了解可变性,以下是我将 DOI 粘贴到 BibDesk 后获得的条目(删除了一些 BibDesk 内部字段。)

@inproceedings{Kleinhenz_2017,
    author = {Julie E. Kleinhenz and Aaron Paz},
    booktitle = {10th Symposium on Space Resource Utilization},
    doi = {10.2514/6.2017-0423},
    month = {jan},
    publisher = {American Institute of Aeronautics and Astronautics},
    title = {An {ISRU} propellant production system for a fully fueled Mars Ascent Vehicle},
    url = {https://doi.org/10.2514%2F6.2017-0423},
    year = 2017,
    }

但这是我从 doi.org 获得的条目:

请注意,doi.org条目是article(这是不正确的),并且也没有{...}在标题中加上 ISRU。BibDesk 版本在正确性方面做得更好。

@article{Kleinhenz_2017, 
  title={An ISRU propellant production system for a fully fueled Mars Ascent Vehicle}, 
  ISBN={9781624104541}, 
  url={http://dx.doi.org/10.2514/6.2017-0423}, 
  DOI={10.2514/6.2017-0423}, 
  journal={10th Symposium on Space Resource Utilization}, 
  publisher={American Institute of Aeronautics and Astronautics}, 
  author={Kleinhenz, Julie E. and Paz, Aaron}, 
  year={2017}, 
  month={Jan}}

以下是我从 Google Scholar 获得的版本:

@inproceedings{kleinhenz2017isru,
  title={An ISRU propellant production system for a fully fueled Mars Ascent Vehicle},
  author={Kleinhenz, Julie E and Paz, Aaron},
  booktitle={10th Symposium on Space Resource Utilization},
  pages={0423},
  year={2017}
}

对于这个特定的条目,BibDesk 版本是最好的(尽管因为我使用,所以biblatex我会将月份从 改为1jan)您得到的条目使用inbook完全不适合这种类型的条目,因为该条目类型是针对单个作者撰写的书籍章节,这种类型在实践中很少使用。

有关在线 bibtex 条目反复出现的问题的完整列表,请参阅:

相关内容