我在环境中有大约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}
}有没有一种不需要逐个转换的方法?
问候
发布于 2020-03-07 01:31:23
一种可能性是使用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中
发布于 2021-11-20 04:01:55
您可以使用tex2bib,这是一个基于text2bib的工具,但已迁移到最新版本(PHP7)。
查看用法示例
文本转换的输入:
\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},
}https://stackoverflow.com/questions/60536106
复制相似问题