latex的bib参考文献导入(zotero+overleaf)

latex的bib参考文献导入(zotero+overleaf)

使用overleaf+zotero编辑参考文献

一、单篇论文的参考文献引用

1、使用\begin{thebibliography}开始参考文献的引用;使用\end{thebibliography}结束;
2、使用\bibitem{}添加文献,在文章中只用使用\cite{}引用,需要自己改,比较麻烦;

\begin{thebibliography}{1}
\bibitem{Bib:Barrett}
M. Sfakiotakis, D. M. Lane, and J. B. C. Davies, “Review of fish
swimming modes for aquatic locomotion,” IEEE J. Ocean. Eng., vol. 24,
no. 2, pp. 237252, May 1999.
\end{thebibliography}

二、多篇论文.bib文件引用

1、使用zotero,将文章所需参考文献导入至一个新文件夹中,选择导出分类,选择文件夹导出ref.bib格式的文件;
latex的bib参考文献导入(zotero+overleaf)_第1张图片

2、打开overleaf,将刚刚的ref.bib文件导入,打开后如下:
latex的bib参考文献导入(zotero+overleaf)_第2张图片

2、接下来就是在文章中导入参考文献:
(1)首先导入如下命令,注意是在\end{document}之前:

\bibliographystyle{ieeetr}
\bibliography{ref} 
\end{document}

(2)编译后还不能显示你的参考文献列表,只有在文章中添加了\cite{}之后才可以正常显示,如下所示:

由于不同期刊格式要求不同,有时需要将同一地方出现的多篇参考文献合并,因此需要添加如下命令可以实现,效果如下:

\usepackage{cite}
latex的bib参考文献导入(zotero+overleaf)_第3张图片
最后,一个个的把文献导入进来就ok啦!
希望对你有所帮助~

你可能感兴趣的:(latex,开发语言)