<xsl:template match="author" mode="bibliography.mode">
<fo:inline>
- <xsl:call-template name="person.name"/>
- <xsl:value-of select="$biblioentry.item.separator"/>
+ <xsl:choose>
+ <xsl:when test="orgname">
+ <xsl:apply-templates select="orgname" mode="bibliography.mode"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:call-template name="person.name"/>
+ <xsl:value-of select="$biblioentry.item.separator"/>
+ </xsl:otherwise>
+ </xsl:choose>
</fo:inline>
</xsl:template>
<xsl:template match="author" mode="bibliomixed.mode">
<fo:inline>
- <xsl:call-template name="person.name"/>
+ <xsl:choose>
+ <xsl:when test="orgname">
+ <xsl:apply-templates select="orgname" mode="bibliomixed.mode"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:call-template name="person.name"/>
+ </xsl:otherwise>
+ </xsl:choose>
</fo:inline>
</xsl:template>
<xsl:template match="author" mode="bibliography.mode">
<span>
<xsl:call-template name="common.html.attributes"/>
- <xsl:call-template name="person.name"/>
- <xsl:copy-of select="$biblioentry.item.separator"/>
+ <xsl:choose>
+ <xsl:when test="orgname">
+ <xsl:apply-templates select="orgname" mode="bibliography.mode"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:call-template name="person.name"/>
+ <xsl:copy-of select="$biblioentry.item.separator"/>
+ </xsl:otherwise>
+ </xsl:choose>
</span>
</xsl:template>
<xsl:template match="author" mode="bibliomixed.mode">
<span>
<xsl:call-template name="common.html.attributes"/>
- <xsl:apply-templates mode="bibliomixed.mode"/>
+ <xsl:choose>
+ <xsl:when test="orgname">
+ <xsl:apply-templates select="orgname" mode="bibliomixed.mode"/>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:call-template name="person.name"/>
+ </xsl:otherwise>
+ </xsl:choose>
</span>
</xsl:template>