<?xml version="1.0" encoding="UTF-8" ?>

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xml:lang="en" xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions">
<axf:document-info name="title" value="AntennaSampleFO" />
<axf:document-info name="subject" value="document-info sample" />
<axf:document-info name="author" value="Tomoko Mayumi" />
<axf:document-info name="keywords" value="AntennaHouse" />
	<fo:layout-master-set>
		<fo:simple-page-master page-height="140mm" page-width="210mm" margin-top="10mm" margin-left="20mm" margin-right="20mm" margin-bottom="10mm" master-name="PageMaster">
			<fo:region-before border-style="none" border-width="thin" extent="15mm"/>
			<fo:region-body column-count="1" border-style="none" border-width="thin" margin-top="20mm" margin-left="0mm" margin-right="0mm" margin-bottom="20mm"/>
			<fo:region-after border-style="none" border-width="thin" extent="15mm"/>
		</fo:simple-page-master>
		<fo:simple-page-master page-height="140mm" page-width="210mm" margin-top="10mm" margin-left="20mm" margin-right="20mm" margin-bottom="10mm" master-name="page2">
			<fo:region-before border-style="none" border-width="thin" extent="15mm"/>
			<fo:region-body column-count="2" column-gap="20mm" border-style="none" border-width="thin" margin-top="20mm" margin-left="0mm" margin-right="0mm" margin-bottom="20mm"/>
			<fo:region-after border-style="none" border-width="thin" extent="15mm"/>
		</fo:simple-page-master>
		<fo:simple-page-master page-height="140mm" page-width="210mm" margin-top="10mm" margin-left="20mm" margin-right="20mm" margin-bottom="10mm" master-name="page3">
			<fo:region-before border-style="none" border-width="thin" extent="15mm"/>
			<fo:region-body column-count="3" border-style="none" border-width="thin" margin-top="20mm" margin-left="0mm" margin-right="0mm" margin-bottom="20mm"/>
			<fo:region-after border-style="none" border-width="thin" extent="15mm"/>
		</fo:simple-page-master>
	</fo:layout-master-set>
	<fo:page-sequence initial-page-number="1" master-reference="PageMaster">
		<fo:static-content flow-name="xsl-region-before">
			<fo:block font-size="9pt">
				<fo:external-graphic src="url('img/antenna-en.png')" content-height="12mm"/>
				XSL FO Sample Copyright &#xA9; 2003-2005 Antenna House, Inc. All rights reserved.
			</fo:block>
		</fo:static-content>
		<fo:flow flow-name="xsl-region-body">
			<fo:block text-indent="1em" font-family="sans-serif" font-size="17pt" font-weight="bold" background-color="#EEEEEE" line-height="20mm">

				 Example of Document Information  embedded into PDF
			</fo:block>
						<fo:block space-before="1em" padding-start="3mm" padding-end="3mm">
				<fo:block>
The axf:document-info is placed as a child of fo:root, and its properties are 'name' and 'value' , which are required. The value of 'name' must be one of "title", "subject", "author" or "keywords". </fo:block>

<fo:block white-space="pre">
&lt;fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
         xmlns:axf="http://www.antennahouse.com/names/XSL/Extensions"&gt;
  &lt;axf:document-info name="title" value="The document title"/&gt;
  &lt;axf:document-info name="subject" value="The document subject"/&gt;
  &lt;axf:document-info name="author" value="The author"/&gt;
  &lt;axf:document-info name="keywords" value="Comma separated keywords list"/&gt;
......
</fo:block>
			</fo:block>
		</fo:flow>
	</fo:page-sequence>
		</fo:root>

