XSL Formatter Q&A
XSLT/XSL-FO/MathML TechnicsTable |
|
| Q. | We would like to add a "continued" caption on the subsequent pages of a table that spans multiple pages. [No.2005051301] |
|---|---|
| A. |
It is possible by using First of all, please specify
<fo:block>
<fo:marker marker-class-name="continued">
<fo:inline ...>Continued on next page...</fo:inline>
</fo:marker>
<fo:table ...>
...
</fo:table>
<fo:block>
<fo:marker marker-class-name="continued" />
</fo:block>
</fo:block>
Next, please specify
<fo:static-content ...>
<fo:block ...>
<fo:retrieve-marker retrieve-position="last-starting-within-page" retrieve-class-name="continued"/>
</fo:block>
So, you can achieve your demand. related matters: When I format FO that uses |