Package: dblatex
Version: 0.3.10-2
X-Debbugs-CC: Benoit Guillon <ben.guil...@gmail.com>

When building a book with individual authors per chapter, it is useful
to specify the authors using a <chapterinfo> block per chapter.
Unfortunately this setup is not rendered properly in dblatex.  It is
rendered better by Docbook XSL.

Here is an example demonstrating the problem:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd";>
<book lang="en">
  <part id="the-first-part">
    <title>The part</title>
    <chapter id="first-chapter">
      <title>First chapter title</title>
      <chapterinfo>
        <author>
          <firstname>First chapter</firstname>
          <surname>Author</surname>
        </author>
      </chapterinfo>
      <para>
      First chapter, first paragraph.
    </para>
    </chapter>
    <chapter id="second-chapter">
      <title>Second chapter title</title>
      <chapterinfo>
        <author>
          <firstname>Second chapter</firstname>
          <surname>Author</surname>
        </author>
      </chapterinfo>
      <para>
      Second chapter, first paragraph.
    </para>
    </chapter>
  </part>
</book>

When building it, the chapter author is shown as the first words of the
first paragraph in each chapter, with no special formatting.  With
Docbook XSL, it is rendered between the title and the first paragraph,
with a slightly larger font than the body and a smaller font than the
title.

-- 
Happy hacking
Petter Reinholdtsen

Reply via email to