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

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

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


Subject: Index title page - alignment of heading


Hello everybody,

 

I modified the index titlepage to have the “Index” title right aligned, but it isn’t working.

I already did:

 

            <xsl:attribute-set name="component.title.properties">

                        <xsl:attribute name="text-align">right</xsl:attribute>

            </xsl:attribute-set>

 

In my customization layer, but the Index header doesn’t bother.

What do I have to do to make the heading right aligned?

--------------------------------

 

<t:titlepage t:element="index" t:wrapper="fo:block">

    <t:titlepage-content t:side="recto">

      <title

                 t:force="1"

                 t:named-template="component.title"

                 param:node="ancestor-or-self::index[1]"

             param:pagewide="1"

                 margin-left="0pt"

                 font-size="&hsize5;"

                 font-family="{$title.fontset}"

                 font-weight="bold"/>

      <subtitle

                        font-family="{$title.fontset}"/>

    </t:titlepage-content>

 

    <t:titlepage-content t:side="verso">

    </t:titlepage-content>

 

    <t:titlepage-separator>

    </t:titlepage-separator>

 

    <t:titlepage-before t:side="recto">

    </t:titlepage-before>

 

    <t:titlepage-before t:side="verso">

    </t:titlepage-before>

  </t:titlepage>

--------------------------------

To

--------------------------------

<t:titlepage t:element="index" t:wrapper="fo:block">

    <t:titlepage-content t:side="recto">

      <title

                 t:force="1"

                 t:named-template="component.title"

                 param:node="ancestor-or-self::index[1]"

             param:pagewide="1"

                 margin-left="0pt"

                 text-align=”right”

                 font-size="&hsize5;"

                 font-family="{$title.fontset}"

                 font-weight="bold"/>

      <subtitle

                        font-family="{$title.fontset}"/>

    </t:titlepage-content>

 

    <t:titlepage-content t:side="verso">

    </t:titlepage-content>

 

    <t:titlepage-separator>

    </t:titlepage-separator>

 

    <t:titlepage-before t:side="recto">

    </t:titlepage-before>

 

    <t:titlepage-before t:side="verso">

    </t:titlepage-before>

  </t:titlepage>

 



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