Back in October, Bob showed me how to include the email and affiliation
data on the verso title page. The following works like a charm:
<xsl:template match="author" mode="book.titlepage.verso.mode">
<fo:block>
<xsl:call-template name="anchor"/>
<xsl:call-template name="person.name"/>
<xsl:apply-templates select="affiliation" mode
="book.titlepage.verso.mode"/>
<xsl:apply-templates select="email" mode="book.titlepage.verso.mode"/>
</fo:block>
</xsl:template>
<xsl:template match="email" mode="book.titlepage.verso.mode">
<fo:block>
<xsl:apply-templates mode="book.titlepage.verso.mode"/>
</fo:block>
</xsl:template>
Or, perhaps I should say, it worked like a charm as long as I had only one
author. I've been fiddling with the authorgroup template all afternoon
with no luck. Anyone know how to make this work (include the authors'
email addresses on the verso title page) for an <authorgroup>?
Thanks.
Dennis Grace
Information Developer
IBM Linux Technology Center
(512) 838-3937 T/L 678-3937 cell: (512)-296-7830
[EMAIL PROTECTED]
There are only 10 kinds of people in the world: those who understand binary
and those who don't.