Hi,
IIUC, the shown page number is structured as this: "Page " + pageNumber
+ "." + sectionNumber
with a special case for the 1st page: "Page " + sectionNumber.
You just need a composite master, comprising 1 master for the 1st page +
1 master for any other pages:
<fo:page-sequence-master master-name="myMaster">
<fo:repeatable-page-master-alternatives>
<!-- the masterFirstPage must be referenced *before* the
masterAnyPage -->
<fo:conditional-page-master-reference master-reference="masterFirstPage"
page-position="first"/>
<fo:conditional-page-master-reference master-reference="masterAnyPage"/>
</fo:repeatable-page-master-alternatives>
</fo:page-sequence-master>
HTH,
Pascal
Red Light a écrit :
> Hi,
>
> i have an assignement where my pdf document have a 4 distinct semantic
> section :(each section which contains a table could have a big amount
> of data , so one section could be displayed on many page)
>
>
> * how the
> footer should be displayed
> ****************************************************************************************
> section A page 1 * Page 1
> page 2 * Page 2.1
> Page 3 * Page 3.1
> *
> *
> section B page 1 * Page 2
> page 2 * Page 2.2
> Page 3 * Page 3.2
>
>
> and so on !.
>
> any idea how should i structure my xsl file (of course a straight
> conventional approach with </fo/:/page-number/> is not going to be
> efficient in my case )
>
>
> and thanks.
>
> NB: sorry for the double posting...
>
>
>
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]