Hello,
In my running header, I include the section titles down to Sect1. I would
like those titles to also include their label numbering.
Ex.
8 Section
_____________________________
Text in the body of the page.
What I would like:
8 1.1 Section
______________________________
Text in the body of the page.
Right now, my header customization looks like this:
...
<xsl:when test="$sequence='odd' and $position='right' and
($pageclass='body' or $pageclass='lot')">
<fo:retrieve-marker retrieve-class-name="section.head.marker"
retrieve-position="first-including-carryover"
retrieve-boundary="page-sequence"/>
 <fo:page-number/>
</xsl:when>
<xsl:when test="$sequence='even' and $position='left' and
($pageclass='body' or $pageclass='lot')">
<fo:page-number/> 
<fo:retrieve-marker retrieve-class-name="section.head.marker"
retrieve-position="first-including-carryover"
retrieve-boundary="page-sequence"/>
</xsl:when>
<xsl:when test="$position='center'">
</xsl:when>
...
If this has already been answered, pointing me in the right direction would
be greatly appreciated!
Lillian Sullam