I've been reading the documentation all night and still can't figure it out.

How do I get the chunked output to include a ToC on the "front-page" of each chapter (and larger parts)?

Both the DocBook-XSL documentation and the online HTML version of "DocBook XSL: The Complete Guide" implement this, so at least I'm not entirely insane as far as it being at least possible…somehow.

有帮助吗?

解决方案

The solution was staring me square in the face, I couldn't see the proverbial forest for all the trees I suppose.

Obviously, the parameter that controls this would be generate.toc, so after modifying my stylesheet to include—

<xsl:param name="generate.toc">
  appendix  toc
  book      toc,title
  chapter   toc
  part      toc
</xsl:param>

—it all rendered beautifully as one'd expect…

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top