I am experiencing with xsl and pdf output. I have a xml file like this:
<?xml version="1.0" encoding="utf-8" ?>
<document>
<header>
<author>my name</author>
</header>
<body>
<text>some text</text>
</body>
</document>
My xsl file looks like:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:template match="/">
<fo:root>
<fo:layout-master-set>
<fo:simple-page-master
master-name="_title"
page-height="29.7cm"
page-width="21cm"
margin="3cm">
<fo:region-body/>
</fo:simple-page-master>
<fo:simple-page-master
master-name="_body"
page-height="29.7cm"
page-width="21cm"
margin="3cm">
<fo:region-body/>
</fo:simple-page-master>
<fo:page-sequence-master master-name="titlepage">
<fo:single-page-master-reference master-reference="_title"/>
</fo:page-sequence-master>
<fo:page-sequence-master master-name="body">
<fo:repeatable-page-master-reference master-reference="_body"/>
</fo:page-sequence-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="titlepage">
<fo:flow flow-name="xsl-region-body" font-family="Courier" font-size="12pt">
<fo:block>
<xsl:apply-templates select="header"/>
</fo:block>
</fo:flow>
</fo:page-sequence>
<fo:page-sequence master-reference="body">
<fo:flow flow-name="xsl-region-body" font-family="Courier" font-size="12pt">
<fo:block>
<xsl:apply-templates select="body"/>
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
</xsl:template>
<xsl:template match="header">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="body">
<xsl:apply-templates />
</xsl:template>
</xsl:stylesheet>
I expect two pdf pages, first page with "my name" and a second one with "some text". Instead I get two empty pages.

headeror any child ofbody. The built-in XSLT templates are selected for execution and they simply copy the text-node descendants of these two elements. If you want something to be generated when matchingheader/authororbody/text, you must provide your templates that match these and that generate whatever it is you want to generate. – Dimitre Novatchev Jan 1 at 19:28