RE: [docbook-apps] authors in refentry

From
Mauritz Jeanson <>
Date
2008-09-09T16:07:57+00:00
ID
4522658B126E4182999604DA4760DFF2@D7MZ171J
Thread
RE: [docbook-apps] authors in refentry
> -----Original Message-----
> From: Sam Steingold
>
> in book:
> <bookinfo>
> ...
> &clisp-authors; &clisp-doc-copyright; &clisp-abstract;
> ... </bookinfo>
> 
> in refentry:
> <refentryinfo>
> ...
> &clisp-authors; &clisp-doc-copyright; &clisp-abstract;
> ...
> </refentryinfo>
> 
> however, only the <book> output contains the author list and copyright
> statement, see <http://sds.podval.org/clisp/impnotes/>, the 
> html manual
> page does not, see <http://clisp.podval.org/impnotes/clisp.html>.


The default for book title pages is to display authorgroup, copyright, and
abstract in the output. The default for refentry is to suppress this
information. 

I think the easiest way to get some output is to add 

 <xsl:template match="refentry/docinfo|refentry/refentryinfo">
   <xsl:apply-templates mode="titlepage.mode"/>
 </xsl:template>

to your customization layer. The stock version of this template is empty
(see html/refentry.xsl). 

You may want to modify this further by using the title page customization
machinery. There is a no-op titlepage specification for refentry in
html/titlepage.templates.xml. 

See http://www.sagehill.net/docbookxsl/HTMLTitlePage.html for more
information.

Mauritz