首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >从书目创建一个.bib文件(书目)

从书目创建一个.bib文件(书目)
EN

Stack Overflow用户
提问于 2020-03-05 07:18:32
回答 2查看 1.6K关注 0票数 0

我在环境中有大约200个bibitem条目

代码语言:javascript
复制
\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文件格式

代码语言:javascript
复制
@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}
}

有没有一种不需要逐个转换的方法?

问候

EN

回答 2

Stack Overflow用户

发布于 2020-03-07 01:31:23

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

代码语言:javascript
复制
@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

票数 1
EN

Stack Overflow用户

发布于 2021-11-20 04:01:55

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

查看用法示例

文本转换的输入:

代码语言:javascript
复制
\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.

输出:

代码语言:javascript
复制
@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},
}
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/60536106

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档