如何编译以下 bibtex 以获取出版物列表

如何编译以下 bibtex 以获取出版物列表

我有以下参考文献列表;

@article{ahmed2016revisiting,
title={Revisiting double Dirac delta potential},
author={Ahmed, Zafar and Kumar, Sachin and Sharma, Mayank and Sharma, Vibhu},
journal={European Journal of Physics},
volume={37},
number={4},
pages={045406},
year={2016},
publisher={IOP Publishing}
}

@article{kumar2017spectral,
title={Spectral statistics for ensembles of various real random matrices},
author={Kumar, Sachin and Ahmed, Zafar},
journal={arXiv preprint arXiv:1704.02715},
year={2017}
}

谁能帮助我,告诉我如何生成列表。

附言:我尝试了几篇与此相关的帖子,但没有得到预期的结果!

答案1

对于最小运行示例,您可以执行以下操作。

将上述参考资料保存在文件中,例如mybib.bib

在同一目录中创建一个文件,例如file.tex包含

\documentclass{article}

\begin{document}

\nocite{*}

\bibliographystyle{plain}
\bibliography{mybib}

\end{document}

现在从文件目录中的 shell 运行以下命令

pdflatex file
bibtex file
pdflatex file
pdflatex file

输出将是一个file.pdf显示为

示例输出

相关内容