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. 237–252, May 1999.
\end{thebibliography}
- 1
- 2
- 3
- 4
- 5
- 6
二、多篇论文.bib
文件引用
1、使用zotero,将文章所需参考文献导入至一个新文件夹中,选择导出分类
,选择文件夹导出ref.bib
格式的文件;
2、打开overleaf,将刚刚的ref.bib
文件导入,打开后如下:
2、接下来就是在文章中导入参考文献:
(1)首先导入如下命令,注意是在\end{document}
之前:
\bibliographystyle{ieeetr}
\bibliography{ref}
\end{document}
- 1
- 2
- 3
(2)编译后还不能显示你的参考文献列表,只有在文章中添加了\cite{}
之后才可以正常显示,如下所示:
由于不同期刊格式要求不同,有时需要将同一地方出现的多篇参考文献合并
,因此需要添加如下命令可以实现,效果如下:
\usepackage{cite}
- 1
