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

Reply via email to