[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Resetting footnotes not working
Hi Toshihiko,
This worked for me to reset PDF footnotes on every page, thanks very much. Here's how I did it. In addition to adding these axf: attributes to <fo:page-sequence>: <fo:page-sequence force-page-count="auto" master-reference="ditamap-body-sequence" B B B axf:footnote-number-initial="1" axf:footnote-number-reset="page"> B B B <fo:static-content flow-name="xsl-footnote-separator"> I also had to refactor every link with axf: markup. So for every <fo:basic-link> like this: <fo:basic-link internal-destination="fnd74e343">1</fo:basic-link> I replaced it with: <axf:footnote-number id="fnd74e343"/> And for an <fo:list-item-label> like this: <fo:list-item-label end-indent="label-end()"> B <fo:block text-align="right" id="fnd74e343"> B <fo:inline B B B B B keep-with-previous.within-line="always" B B B B B baseline-shift="super" font-size="75%" B B B >1</fo:inline></fo:block> </fo:list-item-label> I replaced it with something like this: <fo:list-item-label end-indent="label-end()"> B <fo:block text-align="right"> <<<<<<< remove @id B <fo:inline keep-with-previous.within-line="always" B B B B B baseline-shift="super" font-size="75%"> B B B <axf:footnote-number-citation ref-id="fnd74e343"/> <<<<<<< add @id B B B </fo:inline> B </fo:block> </fo:list-item-label> Thanks, Mark On 7/14/2023 9:17 PM, Toshihiko Makita tmakita@xxxxxxxxxxxxx wrote: Hi Mark,
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|