我将IEEE作为Mendeley参考书目的基础。但是,我试图正确引用报告,但我不知道如何适当地更改csl文件。
我使用报告作为我想引用的文档样式。我现在确实对版本部分有疑问。 该报告是联合的,因此版本称为:ANL 05/20 TAE 960
但是,在我的参考书目中,只打印了 ANL 05/20 ,其余部分被剪掉了。
这是我的报表makro的样子:
<else-if type="report">
<group delimiter=", ">
<text macro="title"/>
<text macro="publisher"/>
<text macro="type"/>
<text macro="edition"/>
<group delimiter=" ">
<text variable="genre"/>
<text variable="number"/>
</group>
<text macro="issued"/>
</group>
</else-if>
这是版本部分的样子:
<macro name="edition">
<choose>
<if type="bill book chapter graphic legal_case legislation motion_picture paper-conference report song" match="any">
<choose>
<if is-numeric="edition">
<group delimiter=" ">
<number variable="edition" form="ordinal"/>
<text term="edition" form="short"/>
</group>
</if>
<else>
<text variable="edition" text-case="capitalize-first" suffix="."/>
</else>
</choose>
</if>
</choose>
这里有谁可以帮助我解决这个问题?