总结了IEEE论文中参考文献需要的字段和格式,以.bib文件为准。
1.期刊论文
参考文献的格式如下:
<名(首字母)>. <姓(全)>, "<论文标题>," <期刊名称>, vol. <卷号>, no. <期号>, pp. <起始页码-终止页码>, <年份>.
例(胡编的,请勿对号入座):
L. Zhang, M. Mass and J. K. Rolling, "How to write a paper," IEEE Transactions on Paper writing, vol. 30, no. 1, pp. 12-18, 2019
.bib文件中:
@article{标识符,
author = {{姓, 名 and 姓, 名 and ... and 姓, 名}},
title = {{论文标题}},
journal = {{期刊名称}},
volume = {卷号},
number = {期号},
pages = {起始页码--终止页码},
year = {年份}
}
需要注意的地方:
1. 标识符一般以第一作者姓+年份表示,当然也可以用自己便于识别的标识符
2. 很多人熟悉的外国人姓名排列顺序为名在前,姓在后,但是在 IEEE 格式的 bib 文件中,是姓在前,名在后。如果作者有中间名,按照下列顺序:<姓,中间名,名>。
3. bib文件中的所有标点符号必须是英文标点符号。
4. 特殊符号,一般包含下划线(_),与符号(&)等等。在使用这些符号时请注意在前面加上反斜杠(\),使其转义,不然 bibtex 无法编译。
5. pages 字段中使用双横杠(--)来连接起始页码和终止页码。
如,文献:L. Zhang, M. Mass and J. K. Rolling, "How to write a paper," IEEE Transactions on Paper writing, vol. 30, no. 1, pp. 12-18, 2019 的bib文件就是:
@article{Zhang2019,
author = {{Zhang, Li and Mass, Moss and Rolling, Jenifer Kate}},
title = {{How to write a paper}},
journal = {{IEEE Transactions on Paper writing}},
volume = {30},
number = {1},
pages = {12--18},
year = {2019}
}
2.会议论文
参考文献的格式如下:
<名(首字母)>. <姓(全)>, "<论文标题>," in <会议名称>, <年份>, pp. <起始页码-终止页码>。
例:
S. Wang, A. Mohamed, "A new mechanism of neural networks," in Proceedings of IEEE Artifical Intelligence, 2018, pp. 211-267.
.bib文件中:
@inproceedings{标识符,
author = {{姓, 名 and 姓, 名 and ... and 姓, 名}},
title = {{论文标题}},
booktitle = {{会议论文集名称或会议名称}},
pages = {起始页码--终止页码},
year = {年份}
}
3.书籍(专著)
参考文献的格式如下:
<名(首字母)>. <姓(全)>, <专著标题>, <出版社>, <年份>
例(此为真实案例):
J.F. Kurose and K.W. Ross, Computer Networking: A Top-down Approach. Pearson, 2017.
.bib文件中:
@book{标识符,
title = {{书籍标题}},
author = {{姓, 名 and ... and 姓, 名}},
publisher = {{出版社名称}},
year = {年份}
}
4.网址引用(参考文献是网址)
参考文献的格式如下:
网站标题. [Online]. Available: <网址>
例:
Google. [Online]. Available: https://www.google.com
.bib文件中:
@electronic{标识符,
url = {{网址}},
title = {{网站标题}}
}
注:看到很多IEEE的期刊的论文中参考文献有引用到网址,但是不知道bib文件里面要具体怎么写,参考第4条。