【问题标题】:Create a .bib file from bibitem (thebibliography)从 bibitem (thebibliography) 创建一个 .bib 文件
【发布时间】:2020-03-04 23:18:32
【问题描述】:

我在环境中有 200 bibitem 条目

\begin{thebibliography}
\bibitem{Bermudez} Berm\'udez, J.D., J. V. Segura y E. Vercher (2010). \emph{Bayesian forecasting with the Holt-Winters model}. Journal of the Operational Research Society, 61, 164-171.
\begin{thebibliography}

我想要生成的 .bib 文件格式

@article{bermudez2010bayesian,
  title={Bayesian forecasting with the Holt--Winters model},
  author={Berm{\'u}dez, Jos{\'e} D and Segura, Jos{\'e} Vicente and Vercher, Enriqueta},
  journal={Journal of the Operational Research Society},
  volume={61},
  number={1},
  pages={164--171},
  year={2010},
  publisher={Taylor \& Francis}
}

有没有一种方法可以做到不用一个一个转换

问候

【问题讨论】:

    标签: latex bibtex


    【解决方案1】:

    一种可能性是使用https://text2bib.economics.utoronto.ca/\bibitem 转换为bibtex 格式。选择西班牙语作为语言,转换的输出是

    @article{Bermudez,
    author = {Berm\'udez, J. D. and J. V. Segura and E. Vercher},
    journal = {Journal of the Operational Research Society},
    pages = {164-171},
    title = {{B}ayesian forecasting with the Holt-Winters model},
    volume = {61},
    year = {2010},
    }
    

    缺少某些字段,例如发布者,因为此信息未包含在您的 \bibitem

    【讨论】:

      【解决方案2】:

      您可以使用tex2bib,这是一个基于text2bib 的工具,但已迁移到最新的PHP 版本(PHP 7)。

      查看使用示例

      文本转换的输入:

      \bibitem{Bermudez} Berm\'udez, J.D., J. V. Segura y E. Vercher (2010). \emph{Bayesian forecasting with the Holt-Winters model}. Journal of the Operational Research Society, 61, 164-171.
      

      输出:

      @article{bv10,
      author = {Berm\'udez, J. D. and J. V. Segura y E. Vercher},
      title = {Bayesian forecasting with the Holt-Winters model},
      journal = {Journal of the Operational Research Society},
      year = {2010},
      volume = {61},
      pages = {164-171},
      }
      

      【讨论】:

      • 您的答案可以通过额外的支持信息得到改进。请edit 添加更多详细信息,例如引用或文档,以便其他人可以确认您的答案是正确的。你可以找到更多关于如何写好答案的信息in the help center
      • 虽然此链接可能会回答问题,但最好在此处包含答案的基本部分并提供链接以供参考。如果链接页面发生更改,仅链接答案可能会失效。 - From Review
      • y 没有被识别为and 似乎有问题
      猜你喜欢
      • 1970-01-01
      • 2011-08-19
      • 2020-06-18
      • 1970-01-01
      • 1970-01-01
      • 2010-12-04
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多