This is the mail archive of the docbook@lists.oasis-open.org mailing list for the DocBook project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [docbook] display email of author in articleinfo


Take a look at the template again.
The name is wrapped in <h3>, which generates a
line break after it in the HTML presentation.
Change that to a <span> and add
white space using <xsl:text>.

Bob Stayton                                 400 Encinal Street
Publications Architect                      Santa Cruz, CA  95060
Technical Publications                      voice: (831) 427-7796
The SCO Group                               fax:   (831) 429-1887
                                            email: bobs@sco.com

On Fri, Jul 25, 2003 at 04:17:09PM +0200, Patrick Eisenacher wrote:
> 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>
> 
> 

-- 

Bob Stayton                                 400 Encinal Street
Publications Architect                      Santa Cruz, CA  95060
Technical Publications                      voice: (831) 427-7796
The SCO Group                               fax:   (831) 429-1887
                                            email: bobs@sco.com

---------------------------------------------------------------------
To unsubscribe, e-mail: docbook-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: docbook-help@lists.oasis-open.org


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]