0

MSWORD 2013 でカスタム参考文献スタイルを作成したいのですが、このスタイルを使用しています。IEEE_Reference.XSL を使用し、必要な変更を適用しました。大丈夫です。

しかし、私の記事には複数の言語参照があります。Microsoft Word の既定の参考文献スタイルと同様に、私の参考文献スタイルをローカライズしたいと考えています。

これには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%, }{&lt;i&gt;%Title%&lt;/i&gt;{, %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 を選択します。

誰でも私がこの条件を実行するのを手伝ってくれますか? ありがとう、

4

1 に答える 1