docbook-apps

  • 1.  Re: [docbook-apps] Dealing with relative CSS files in chunked output

    Posted 12-10-2009 18:39
    Hi,
    I discovered this same problem when I started working on generating a CSS
    file and creating the links to it. I was also surprised it had not come up
    before. I'm planning to fix it in the next release.

    Bob Stayton
    Sagehill Enterprises
    bobs@sagehill.net





  • 2.  Suppressing section labels in preface elements (FO output)

    Posted 12-11-2009 00:29
    Hi all,

    Is there already a parameter established for suppressing section labels within prefaces? I've looked, to no avail.

    Barring that, anybody know of a quick way of doing it? I'm inches away from just tranforming the section/titles into bridgeheads and moving on.

    Cheers,
    Jeff.



  • 3.  RE: [docbook-apps] Suppressing section labels in preface elements (FO output)

    Posted 12-11-2009 03:40
    I think this would do it:

    <xsl:param name="section.autolabel">
    <xsl:choose>
    <xsl:when test="ancestor::preface">0</xsl:when>
    <xsl:otherwise>1</xsl:otherwise>
    </xsl:choose>
    </xsl:param>

    David

    >