我正在写一篇关于电子游戏的文章,自然会引用其中的一些作为例子。因为我们是计算机科学专业,所以我们使用 IEEE 参考文献格式,其中有一节专门展示了应该如何引用电脑游戏:
[4]霍比特人:指环王的前奏。[CD-ROM]。英国:Vivendi Universal Games,2003年。
那么我在 Bibtex 中使用什么类型的实体以及设置哪些字段?
注意:我在乳胶中使用 IEEEtr 书目样式。
谢谢你!
答案1
尝试这个
@MISC{hobbit,
author = "Veivendi Universal Games",
title = "The Hobbit: The Prelude to the Lord of the Rings",
howpublished = "[CD-ROM]",
year = 2003,
}
答案2
对于使用该IEEEtran.bst
样式的任何人,当前接受的答案将缩写作者姓名。虽然它仍然不符合问题中要求的样式,但我使用以下格式:
@misc{game:hobbit,
title = "{T}he {H}obbit: {T}he {P}relude to the {L}ord of the {R}ings",
organization = "Vivendi Universal Games",
location = "United Kingdom",
howpublished = "[PC CD-ROM]",
year = "2003",
}
[63] 《霍比特人:指环王前奏曲》[PC CD-ROM],维旺迪环球游戏,2003年
注意,为了避免大小写变化,必要的字符必须放在 中{}
。更简单的解决方案是将整个标题放在括号中:
"{The Hobbit: The Prelude to the Lord of the Rings}",
该解决方案也author
适用于个人开发的游戏,例如:
@misc{game:redeclipse,
author = "Reeves, Quinton and Salzman, Lee",
title = "{R}ed {E}clipse",
year = "2011",
note = "v1.3.1",
url = "http://www.redeclipse.net",
}
顺便说一句,如果您使用该url
字段,IEEEtran
则会自动插入“[在线]”:
[62] Q. Reeves 和 L. Salzman,《Red Eclipse》,2011 年,第 1.3.1 版。[在线]。可访问:http://www.redeclipse.net
答案3
为什么不直接使用书籍或杂项类型?书籍也有标题和出版商。只需对不同的字段进行一些调整,直到结果适合您。原始 Bibtex 类型在输出文件中看不到。
问候 Nick