Re: [docbook] display email of author in articleinfo

From
Patrick Eisenacher <>
Date
2003-07-25T13:59:32+00:00
ID
Thread
Re: [docbook] display email of author in articleinfo
This works very nicely :)

Now, how can I make the name and the email address appear on the same 
line instead of underneath each other?


Thanks once again,
Patrick

Bob Stayton schrieb:
> On Thu, Jul 24, 2003 at 05:41:30PM +0200, Patrick Eisenacher wrote:
> 
>>
>>I have an authorgroup with 2 authors in my articleinfo. Their firstnames 
>>and surnames get displayed fine, but their email tags get suppressed. 
>>How can I get their email addresses to be displayed on the titlepage?
> 
> <xsl:template match="author" mode="titlepage.mode">
>   <div class="{name(.)}">
>     <h3 class="{name(.)}"><xsl:call-template name="person.name"/></h3>
>     <xsl:apply-templates mode="titlepage.mode" select="./contrib"/>
>     <xsl:apply-templates mode="titlepage.mode" select="./affiliation"/>
>     <xsl:apply-templates mode="titlepage.mode" select="./email"/>
>   </div>
> </xsl:template>