<?xml version="1.0"	encoding="UTF-8"?>

<!--
 This is just about the simplest XSL-FO document you can produce.
 It's not pretty, but it provides a good example of the minimum
 set of elements needed to produce output.
-->

<fo:root	xmlns:fo="http://www.w3.org/1999/XSL/Format">

<!-- Describe all of the page layouts used in the document. -->
	<fo:layout-master-set>
		<fo:simple-page-master master-name="hello">
			<fo:region-body />
		</fo:simple-page-master>
	</fo:layout-master-set>

<!-- This section describes the content of the pages. -->
	<fo:page-sequence master-reference="hello">
		<fo:flow flow-name="xsl-region-body">
			<fo:block >
				Hello World!
			</fo:block>
		</fo:flow>
	</fo:page-sequence>

</fo:root>

