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: Re: [docbook-apps] How to add vertical space before the start of footnotes?


On 15/10/13 21:54, Erik Leunissen wrote:

Can this be done? If so, I'd appreciate very much some directions.


Never mind.

Some combining, deducing, trial and error eventually lead to something that worked. The space-before.conditionality="retain" clause inside an <fo:block/> made the difference. I appended the complete recipe for the curious.

Greetings,

Erik Leunissen
--

<xsl:template name="footnote-separator">
  <fo:static-content flow-name="xsl-footnote-separator">
    <fo:block space-before.conditionality="retain"
              space-before.optimum="3.0em"
              space-before.minimum="2.8em"
              space-before.maximum="3.2em"/>
    <fo:block>
      <fo:leader xsl:use-attribute-sets="footnote.sep.leader.properties"/>
    </fo:block>
  </fo:static-content>
</xsl:template>

-- end of message --



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