<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1"
  xmlns:fo="http://www.w3.org/1999/XSL/Format">
  
  <xsl:output method="xml"/>
  
  <xsl:template match="/">
    <xsl:document href="glossary.fo">
      
      <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
        
        <fo:layout-master-set>
          <fo:simple-page-master master-name="simple"
            page-height="29.7cm" 
            page-width="21cm"
            margin-top="2cm" 
            margin-bottom="1.5cm" 
            margin-left="2.5cm" 
            margin-right="2.5cm">
            <fo:region-body margin-top="1.5cm" margin-bottom="1.5cm"/>
            <fo:region-before extent="1.5cm"/>
            <fo:region-after extent="1cm"/>
          </fo:simple-page-master>
        </fo:layout-master-set>
        
        <fo:page-sequence master-reference="simple">
          
          <fo:static-content flow-name="xsl-region-before">
            <fo:block font-size="12pt" 
              font-family="Times Roman"
              line-height="14pt"
              text-align="end">
              Header
            </fo:block>
            <fo:block line-height="1pt">
              <fo:leader leader-alignment="reference-area" leader-pattern="rule"/>
            </fo:block>
          </fo:static-content>
          
          <fo:static-content flow-name="xsl-region-after">
            <fo:block font-size="14pt" 
              font-family="Times Roman"
              line-height="14pt"
              text-align="end">
              Footer
            </fo:block>
          </fo:static-content>
          
          <fo:flow flow-name="xsl-region-body">
            
            <!-- Title -->
            <fo:block font-size="18pt" 
              font-family="Times Roman"
              font-weight="bold"
              line-height="24pt"
              space-after.optimum="12pt"
              text-align="center"
              padding-top="3pt">
              Title
            </fo:block>
            
            <!-- Author -->
            <fo:block font-size="14pt" 
              font-family="Times Roman"
              line-height="24pt"
              space-after.optimum="16pt"
              text-align="center"
              padding-top="3pt">
              Author
            </fo:block>
            
            <!-- *** Hier Topicliste einfuegen *** -->
            
          </fo:flow>
        </fo:page-sequence>
      </fo:root>
      
    </xsl:document>
  </xsl:template>
  
</xsl:stylesheet>

