我一直在使用 Mendeley 的 Microsoft Word 插件来轻松参考 Mendeley 桌面库中的论文。
但是,我注意到参考书目/引文的 IEEE 格式在引用会议记录和论文方面是不正确的。
关于 IEEE 引文指南:http ://www.ieee.org/documents/ieeecitationref.pdf
它表明会议所在城市应包含在会议论文的引用中。但是,Mendeley 的 IEEE CSL 文件不包含此详细信息。
<macro name="event">
<choose>
<if type="paper-conference speech" match="any">
<choose>
<!-- Published Conference Paper -->
<if variable="container-title">
<group delimiter=", ">
<group delimiter=" ">
<text term="in"/>
<text variable="container-title" font-style="italic"/>
</group>
<text variable="event-place"/>
</group>
应改为:
<macro name="event">
<choose>
<if type="paper-conference speech" match="any">
<choose>
<!-- Published Conference Paper -->
<if variable="container-title">
<group delimiter=", ">
<group delimiter=" ">
<text term="in"/>
<text variable="container-title" font-style="italic"/>
</group>
<text variable="publisher-place"/>
</group>
由于 event-place 不是映射到 Mendeley 中“城市”字段的关键字;正确的变量是“publisher-place”。