You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-users@xmlgraphics.apache.org by Meltem Kogelbauer <me...@netdecisions.co.uk> on 2002/03/13 15:36:45 UTC

another newbie question

OK, I need help on this

Here is my XML
<page>
<persons>
	<person>
		<name />
		<address />
		<country />
	</person>
	<person>
		<name />
		<address />
		<country />
	</person>
.....
</persons>
</page>

I am using <template match="person"> and calling it with <apply-templates>
in <fo:page-sequence master-reference="many-pages"> (I know this is wrong)

However, I am not getting the desired output which is the output of <person>
details per page.
I want every <person> to appear in a seperate page. What do I loop through
to generate single page for every <person> element. 

Do you have any examples for such a case?

Thanks in advance

Meltem