赞
踩
参考https://blog.csdn.net/caiandyong/article/details/70258670
1,新建文件,名为references.bib
2,找到文件,如arXiv中,点击右下角INSPIRE HEP,点击参考文献Bib Tex格式,如下
@article{Adam:2015wua,
author = "Adam, R. and others",
title = "{Planck 2015 results. X. Diffuse component separation:
Foreground maps}",
collaboration = "Planck",
journal = "Astron. Astrophys.",
volume = "594",
year = "2016",
pages = "A10",
doi = "10.1051/0004-6361/201525967",
eprint = "1502.01588",
archivePrefix = "arXiv",
primaryClass = "astro-ph.CO",
SLACcitation = "%%CITATION = ARXIV:1502.01588;%%"
}
复制到references.bib中,第一行的article之后可以改名为自己对应的名字,如
@article{test,
author ....
3,在latex文章\end{document}之前添加:
\bibliographystyle{unsrt}
\bibliography{references}
\end{document}
上面unsrt还有如下格式:
1. plain,按字母的顺序排列,比较次序为作者、年度和标题;
2. unsrt,样式同plain,只是按照引用的先后排序;
3. alpha,用作者名首字母+年份后两位作标号,以字母顺序排序;
4. abbrv,类似plain,将月份全拼改为缩写,更显紧凑;
5. ieeetr,国际电气电子工程师协会期刊样式;
6. acm,美国计算机学会期刊样式;
7. siam,美国工业和应用数学学会期刊样式;
8. apalike,美国心理学学会期刊样式;
4,引用的时候直接\cite{test}
5,编译先编译latex再点B(即bib tex)再编译latex
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。