Glad you found a workaround (far from being obvious!) for this issue. And thank you for sharing it with us.

On 08/23/2016 11:54 PM, Robert Ramey wrote:
On 8/2/16 1:35 AM, Hussein Shafie wrote:
It seems that the "HTML chunking" code of the DocBook XSL Stylesheets
has been designed to correctly process bibliography when it is found in
a book, article or a part, but not when it is found in a chapter.

Turns out that is related to the "chunking" parameters setup.  The
default DocBook creates and html web page which has section table of
contents with no subsections - only links.  I tweaked by trial and error
(which I hate to do) and when I go the html fixed, I transfered the
folowing settings to both epub and html style sheets which makes things
work all around.

Thanks for looking into this for me and pointing me in the right direction.

Robert Ramey

<!-- ******* Table of Contents ******** -->

<!-- How far down sections get TOC's -->
<xsl:param name = "toc.section.depth" select="3" />

<!-- Max depth in each TOC: -->
<xsl:param name = "toc.max.depth" select="3" />

<!-- How far down we go with TOC's -->
<xsl:param name="generate.section.toc.level" select="0" />

<!-- ************ Chunking ************ -->

<!-- don't make first sections special - leave TOC in different file
Note, if we dont' set this to "0", we don't get the text interleaved
in with the sections
-->
<xsl:param name="chunk.first.sections" select="0" />

<!-- How far down we chunk nested sections -->
<!--
Note: each chunk have to start with  a section with an id
Otherwise the chunk (i.e. file) will be lost.  There is no
checking of this
-->
<xsl:param name="chunk.section.depth" select="2" />
<xsl:param name="chunk.first.sections" select="1" />

<!--
Set section numbering
-->
<xsl:param name="section.autolabel" select="1" />
<xsl:param name="section.autolabel.max.depth" select="2" />



--
XMLmind XML Editor Support List
xmleditor-support@xmlmind.com
http://www.xmlmind.com/mailman/listinfo/xmleditor-support

Reply via email to