将 bibjson 与 latex 结合使用

将 bibjson 与 latex 结合使用

我正在尝试使用比比黄页针对 LaTeX 文档。以下是我的文件:

文本文件

\documentclass{article}

\begin{document}
    Hello \cite{foo_ref}.

    \bibliographystyle{unsrtnat}
    \bibliography{ecm}
\end{document}

电子商务参考书

@ARTICLE{foo_ref,
    author = {Joe Doe},
    title = {foobar},
    year = {2022}
}

pdflatex + bibtex 使用以下方法生成带有参考书目的正确 pdf 文档 ecm.bib

使用这个问题我成功生成了bibjson:

源文件

[
  {
    "author": [
      {
        "family": "Doe",
        "given": "Joe"
      }
    ],
    "id": "foo_ref",
    "issued": {
      "date-parts": [
        [
          2022
        ]
      ]
    },
    "title": "foobar",
    "type": "article-journal"
  }
]

怎么办 ?

例如,我如何生成文件ecm.bbl

编辑(回答 moewe 的评论)我想使用 json 格式而不是 bib 格式,因为有更多工具可以使用。在众多工具中,python 有一个很酷的json模块。所以我的目的是一次性转换 bib->json,然后忘记初始 bib 文件。

编辑(答案)因为似乎什么都不存在,所以我写道“jsonbib->bbl“我自己。这些功能对于我的书来源),但如果它能帮助某人……

相关内容