该方法仅针对MDPI模板,经测试多次完全没有问题,其他论文模板步骤可能会有差别,还在探索,以后补充。
1、在MDPI模板里新建一份文件,命名为references.bib。
可以先建立references.txt。填入内容后,再将后缀名改为bib。
在references.bib里填入自己需要添加的参考文献(在谷歌学术查到对应文献后引用),
举例一篇论文索引,点击”引用:
会弹出来一个“引用”框,点击Bibtex格式,会出现如下图所示的代码:
复制这一段代码,粘贴进之前建立的references.txt文件:
例如填入以下内容:
@article{ortiz2002vision,
title={A vision system for an underwater cable tracker},
author={Ortiz, Alberto and Sim{\'o}, Miquel and Oliver, Gabriel},
journal={Machine vision and applications},
volume={13},
number={3},
pages={129--140},
year={2002},
publisher={Springer}
}
@article{qu2017non,
title={Non-sky polarization-based dehazing algorithm for non-specular objects using polarization difference and global scene feature},
author={Qu, Yufu and Zou, Zhaofan},
journal={Optics Express},
volume={25},
number={21},
pages={25004--25022},
year={2017},
publisher={Optical Society of America}
}
填好内容后保存。
2、打开template.tex,在 \reftitle{References} 后填入:
\externalbibliography{yes}
\bibliography{references}
注意 \bibliography{references} ,大括号里和新建的bib文件名字要保持一致。
原文要添加引用,不然会报错。
想在论文中引用,在需要引用文献的地方采用\cite{xxx}格式引用,xxx为大括号中的第一个内容,如上面的 \cite{ortiz2002vision} 和 \cite{qu2017non} :
得到的引用结果如下图,大功告成!
可以把原模版代码中的\begin{thebibliography}{999}和\end{thebibliography}之间的内容全部删掉就不回出现两个参考文献了。