IEEE 会议风格引用

IEEE 会议风格引用

我开始需要一些参考文献方面的帮助。我正在使用 IEEE 引用格式撰写一篇论文,并试图引用一篇会议论文。这些引用应遵循以下风格:http://libguides.murdoch.edu.au/content.php?pid=144623&sid=1229936

我试图引用的论文:http://dl.acm.org/citation.cfm?id=2347587

我使用站点工具来获取 BibTeX 引用(虽然删除了三行):

@inproceedings{Valtchanov:2012:EDC:2347583.2347587,
 author = {Valtchanov, Valtchan and Brown, Joseph Alexander},
 title = {Evolving Dungeon Crawler Levels with Relative Placement},
 booktitle = {Proceedings of the Fifth International C* Conference on Computer Science and     Software Engineering},
 series = {C3S2E '12},
 year = {2012},
 isbn = {978-1-4503-1084-0},
 location = {Montreal, Quebec, Canada},
 pages = {27--35},
 numpages = {9},
 publisher = {ACM},
 address = {New York, NY, USA},
 keywords = {evolutionary computation, level generation, procedural content generation},
} 

在 writelatex.com 上我使用:

\bibliography{references.bib}
\bibliographystyle{IEEEtran}

它创建一个如下所示的引用:

V. Valtchanov 和 JA Brown,《通过相对位置演进地下城探索者等级》,载于第五届国际 C* 计算机科学与软件工程大会论文集,C3S2E '12 系列。美国纽约州纽约:ACM,2012 年,第 27-35 页。

这确实很好,但并不完全正确。请注意,它没有提到出版地点和日期,而不是会议地点。

(或者我可能误解了整个事情)

答案1

我认为你使用IEEEtran书目样式的唯一方法为了满足您所在大学的明显要求,列出活动的地点和日期(并将这两条信息以斜体排版!),需要将地点和日期信息直接包含在字段中booktitle

在此处输入图片描述

\documentclass[a4paper]{report}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@inproceedings{Valtchanov:2012:EDC:2347583.2347587,
 author = {Valtchanov, Valtchan and Brown, Joseph Alexander},
 title = {Evolving Dungeon Crawler Levels with Relative Placement},
 booktitle = {Proceedings of the Fifth International C* Conference on Computer Science 
    and Software Engineering, Montreal, Quebec, Canada, June 27--29, 2012},
 series = {C3S2E '12},
 year = {2012},
 isbn = {978-1-4503-1084-0},
 pages = {27--35},
 numpages = {9},
 publisher = {ACM},
 address = {New York, NY, USA},
 keywords = {evolutionary computation, level generation, procedural content generation},
} 
\end{filecontents*}
\bibliographystyle{IEEEtran}
\begin{document}
\nocite{*}
\bibliography{\jobname} 
\end{document}

答案2

正如 Johannes 刚才所说,这是IEEEtran参考书目样式的预期行为。您可以完全接受它,也可以修改它以满足您的需求……但它将不再符合 IEEE 标准。

答案3

对于 IEEE,使用地址而不是位置

相关内容