I upgraded my Office from 2010 to 2013 RTM recently, but unfortunately the ABNT style stoped working. I tried moving it to "C:\Program Files\Microsoft Office\Office15\Bibliography\Style" but the style isn't loaded to the styles list. It seens that the style structure has changed, but I was not able to find instructions about it. It'd be very welcome if this style was upgraded or at least any directions was given.
Comments: ** Comment from web user: ErickPetru **
Comments: ** Comment from web user: ErickPetru **
I found a way in another post at the Discussion area.
Put these two new elements __<xsl:when ..>__ between the existing ones:
```
<!-- Handle the different types of input documents. -->
<xsl:template match="/">
<xsl:choose>
<!-- Sets a dummy version number. -->
<xsl:when test="b:XslVersion">
<xsl:text>10</xsl:text>
</xsl:when>
<!-- We do not do localization, just use the default name. -->
<xsl:when test="b:StyleNameLocalized">
<xsl:value-of select="msxsl:node-set($data)/general/stylename"/>
</xsl:when>
<!-- Gets the name of the style as it will be displayed in Word 2007. -->
<xsl:when test="b:StyleName">
...
```