我想在MSWORD 2013中创建一个自定义书目样式,我使用这个样式。我使用IEEE_Reference.XSL,并应用了所需的更改。没事的。
但我的文章有多种语言参考。我希望本地化我的参考书目风格,就像微软默认的单词参考书目风格一样。
我知道我应该使用LCID,
我代码的某些部分是这样的:
<source type="Book">
<column id="1">
<halign>right</halign>
<valign>top</valign>
<format>{[%RefOrder%]}</format>
</column>
<column id="2">
<halign>left</halign>
<valign>top</valign>
<format >{%Author:1|Editor:2%, }{<i>%Title%</i>{, %Edition:o% ed.}}{, %Editor:2%}.{ %City|StateProvince|CountryRegion%}{, %StateProvince|CountryRegion%}{, %CountryRegion%}{: %Publisher%}{,{ %Month:s%} %Year%}{, vol. %Volume%}{, %Comments%}.{ [Online]. %URL:l%}</format>
</column>
<sortkey></sortkey>
</source>
我的目标是这样的代码:
xsl:choose>
<xsl:when test="b:LCID='1033'">
--ENGILSH FORMAT
</xsl:when>
<xsl:otherwise>
--PERSIAN FORMAT
</xsl:otherwise>
</xsl:choose>
但是它不起作用,并且总是选择xsl:otherwise。
有人能帮我做这个条件吗?谢谢,
我的Office 15中没有IEEE_Reference.xsl-通过b:StyleNameLocalized/b:Lcid
使用cid