对于所提到的参考文献样式,我应该使用哪种书目样式?

对于所提到的参考文献样式,我应该使用哪种书目样式?

我是 Latex 环境的新手,我可以为下面的样式准备参考,如图所示:在此处输入图片描述

但手册没有正确提及参考书目样式。但它在 zip 文件中有一个可供参考的 .bbl 文件。

示例 .bbl 文件格式如 zip 文件所示:

\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}

Random citation \cite{DUMMY:2} embeddeed in text.\cite{DUMMY:1}

\nocite{*}
\bibliography{mybib} 

\bibliographystyle{auapalike}

\end{document}

我在编辑器中使用 PDFLaTeX 进行编译。但我无法获得图像和 .bbl 文件中的输出。所以请指导我获取PDF 文件对于上述输出.bbl 文件使用.bib 文件在乳胶中。

提前致谢。

相关内容