> -----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