Hello,

I am generating chunked HTML output from a DocBook 5 XML document but the start points of the chunks seem inconsistent: sometimes a new chunk starts at the second subsection of a second, sometimes it includes all the subsections of a section. For the attached file I set the chunk.section.depth parameter to 5 and the whole Section 1 (with subsections 1.1 and 1.2) is included in one chunk but Section 2 is split in two chunks: Section 2.1 and Section 2.2. Is Section 1.2 not supposed to go to a separate chunk too? Does anyone know how I can make the splitting consistent?


Thank you,
Sorin

http://www.oxygenxml.com
<?xml version="1.0" encoding="UTF-8"?>
<?oxygen RNGSchema="http://www.oasis-open.org/docbook/xml/5.0/rng/docbook.rng"; type="xml"?>
<chapter xmlns="http://docbook.org/ns/docbook";
    xmlns:xlink="http://www.w3.org/1999/xlink"; version="5.0">
    <title>Chapter title</title>
    <sect1>
        <title>Section 1 title</title>
        <sect2>
            <title>Section 1.1 title</title>
            <para>Text section 1.1.</para>
        </sect2>
        <sect2>
            <title>Section 1.2 title</title>
            <para>Text section 1.2.</para>
        </sect2>
    </sect1>
    <sect1>
        <title>Section 2 title</title>
        <sect2>
            <title>Section 2.1 title</title>
            <para>Text section 2.1.</para>
        </sect2>
        <sect2>
            <title>Section 2.2 title</title>
            <para>Text section 2.2.</para>
        </sect2>
    </sect1>
</chapter>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to