OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [docbook] Newbie Mark Up Complaints


On Wed, Jul 7, 2010 at 09:50, Mauritz Jeanson <mj@johanneberg.com> wrote:
...
> |  4. Have the first line of a series of paragraphs in a section not
> |  indented but the rest indented.
...
> DocBook example:
> http://www.mail-archive.com/docbook@lists.oasis-open.org/msg04957.html

That message gives a solution for indenting  normal paras.:

    <xsl:attribute-set name="standard.para.spacing">
        <xsl:attribute name="text-indent">24pt</xsl:attribute>
    </xsl:attribute-set>

    <xsl:template match="d:para">
        <fo:block xsl:use-attribute-sets="standard.para.spacing">
            <xsl:call-template name="anchor"/>
            <xsl:apply-templates/>
        </fo:block>
    </xsl:template>

Now, how would one add a template (or modify an existing one) to
eliminate the first-line indent just for paras immediately following a
<title>?

Thanks.

-Tom


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]