尝试以编程方式获取具有正确月份条目的 bibtex 条目

尝试以编程方式获取具有正确月份条目的 bibtex 条目

我正在编写一个脚本,以便自动在我的参考书目数据库中添加新的 bib 条目。为了实现这一点,我使用以下命令:

curl -LH "Accept: application/x-bibtex" http://dx.doi.org/10.1038/nrd842

进而产生输出:

@article{Atkins_2002,
        doi = {10.1038/nrd842},
        url = {https://doi.org/10.1038%2Fnrd842},
        year = 2002,
        month = {jul},
        publisher = {Springer Science and Business Media {LLC}},
        volume = {1},
        number = {7},
        pages = {491--492},
        author = {Joshua H. Atkins and Leland J. Gershell},
        title = {Selective anticancer drugs},
        journal = {Nature Reviews Drug Discovery}
    }

我曾经sed更改过 urlencoded 的反斜杠,但我不明白为什么月份条目不是整数。Biblatex 说月份条目必须是整数。是否有任何命令行工具可以输出带有正确月份条目的参考书目?

相关内容