如何在 Latex 中从 bib 文件生成自定义 bbl 文件?

如何在 Latex 中从 bib 文件生成自定义 bbl 文件?

我需要生成如下所示的 .bbl 文件格式

\begin{thebibliography}{99}

\bibitem[Aghion and Durlof 2005]{aghion}
Aghion,~P \& Durlof,~S 2005, 
\newblock `Handbook of Economic Growth',
\newblock Elsevier books,
\newblock Amsterdam.

\bibitem[Albert 1975]{albert}
Albert,~Le 1975,
\newblock Nuclear Model,
\newblock Hoxen,
\newblock New York.

\bibitem[Alshahi et al 2009]{alishahi}
Alishahi,~K.~L, Marvasti,~F \& Aref~Lee~Mathew 2009,
\newblock Bounds on the sum capacity of synchronous binary CDMA channels,
\newblock Journal of Chemical Education,
\newblock Vol.~55, no.~8, pp.~3577--3593.

\end{thebibliography}

来自示例 .bib 文件,如下所示

@ARTICLE{1, 
author={D. C. {Rapaport}}, 
journal={Computing in Science Engineering}, 
title={Molecular dynamics simulation}, 
year={1999}, 
volume={1}, 
number={1}, 
pages={70-71}, 
}

@ARTICLE{2, 
author={A. {Bryden} and G. {Phillips} and M. {Gleicher}}, 
journal={IEEE Transactions on Visualization and Computer Graphics}, 
title={Automated Illustration of Molecular Flexibility}, 
year={2012}, 
volume={18}, 
number={1}, 
pages={132-145}, 
}

@ARTICLE{3, 
author={R. F. {Tinker} and Q. {Xie}}, 
journal={Computing in Science Engineering}, 
title={Applying Computational Science to Education: The Molecular Workbench Paradigm}, 
year={2008}, 
volume={10}, 
number={5}, 
pages={24-27}, 
}

我在 Latex 中使用了以下代码

\documentclass{article}

\begin{document}

\bibliography{ref} 
\bibliographystyle{ieeetr}

\end{document}

但是它会生成如下所示的 .bbl 文件

\begin{thebibliography}{1}

\bibitem{1}
D.~C. {Rapaport}, ``Molecular dynamics simulation,'' {\em Computing in Science
  Engineering}, vol.~1, no.~1, pp.~70--71, 1999.

\bibitem{2}
A.~{Bryden}, G.~{Phillips}, and M.~{Gleicher}, ``Automated illustration of
  molecular flexibility,'' {\em IEEE Transactions on Visualization and Computer
  Graphics}, vol.~18, no.~1, pp.~132--145, 2012.

\bibitem{3}
R.~F. {Tinker} and Q.~{Xie}, ``Applying computational science to education: The
  molecular workbench paradigm,'' {\em Computing in Science Engineering},
  vol.~10, no.~5, pp.~24--27, 2008.

\end{thebibliography}

这与我期望的格式不匹配。请指导我如何在 latex 中获取我期望的格式。提前致谢。

相关内容