</xsl:template>
<xsl:template name="publisher.attribution">
- <xsl:text> .sp -1 </xsl:text>
+ <xsl:text> .sp -1n </xsl:text>
<xsl:text>.IP </xsl:text>
<xsl:call-template name="gentext">
<xsl:with-param name="key" select="'Publisher'"/>
<!-- * If we have no *blurb or contrib, but this is an Author or -->
<!-- * Editor, then render the corresponding localized gentext -->
<xsl:when test="self::author">
- <xsl:text> .sp -1 </xsl:text>
+ <xsl:text> .sp -1n </xsl:text>
<xsl:text>.IP </xsl:text>
<xsl:call-template name="gentext">
<xsl:with-param name="key" select="'Author'"/>
<xsl:text>. </xsl:text>
</xsl:when>
<xsl:when test="self::editor">
- <xsl:text> .sp -1 </xsl:text>
+ <xsl:text> .sp -1n </xsl:text>
<xsl:text>.IP </xsl:text>
<xsl:call-template name="gentext">
<xsl:with-param name="key" select="'Editor'"/>
<xsl:when test="self::othercredit">
<xsl:choose>
<xsl:when test="@class and @class != 'other'">
- <xsl:text> .sp -1 </xsl:text>
+ <xsl:text> .sp -1n </xsl:text>
<xsl:text>.IP </xsl:text>
<xsl:call-template name="gentext">
<xsl:with-param name="key" select="@class"/>
</xsl:template>
<xsl:template match="personblurb|authorblurb" mode="authorsect">
- <xsl:text> .sp -1 </xsl:text>
+ <xsl:text> .sp -1n </xsl:text>
<xsl:text>.IP </xsl:text>
<!-- * yeah, it's possible for a *blurb to have a "title" -->
<xsl:apply-templates select="title"/>
<xsl:template match="contrib" mode="authorsect">
<!-- * We treat Contrib the same as Personblurb/Authorblurb -->
<!-- * except that we don't need to check for a title. -->
- <xsl:text> .sp -1 </xsl:text>
+ <xsl:text> .sp -1n </xsl:text>
<xsl:text> .IP </xsl:text>
<xsl:apply-templates/>
</xsl:template>