<?xml version="1.0" encoding="utf-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
   xmlns:rx="http://www.renderx.com/XSL/Extensions">
   <fo:layout-master-set>
      <fo:simple-page-master master-name="simple-master">
         <fo:region-body/>
      </fo:simple-page-master>
   </fo:layout-master-set>


   <fo:page-sequence master-reference="simple-master">
      <fo:flow flow-name="xsl-region-body">

         <fo:list-block provisional-distance-between-starts="10pt"
            provisional-label-separation="3pt">

            <fo:list-item space-after="1in">
               <fo:list-item-label end-indent="label-end()">
                  <fo:block>*</fo:block>
               </fo:list-item-label>
               <fo:list-item-body start-indent="body-start()">
                  <fo:block>First List Item Here (space-before="0in" space-after="1in")</fo:block>
               </fo:list-item-body>
            </fo:list-item>

            <fo:list-item space-after="1in">
               <fo:list-item-label end-indent="label-end()">
                  <fo:block>*</fo:block>
               </fo:list-item-label>
               <fo:list-item-body start-indent="body-start()">
                  <fo:block>Subseqent List Item Here (space-before="0in" space-after="1in")</fo:block>
               </fo:list-item-body>
            </fo:list-item>

            <fo:list-item space-after="1in">
               <fo:list-item-label end-indent="label-end()">
                  <fo:block>*</fo:block>
               </fo:list-item-label>
               <fo:list-item-body start-indent="body-start()">
                  <fo:block>Final List Item Here (space-before="0in" space-after="1in")</fo:block>
               </fo:list-item-body>
            </fo:list-item>

         </fo:list-block>

         <fo:block space-before="1in"
            >A block after a list (space-before="1in" space-after="0in") 
            but we only want 1 inch of space between this block and the last item in the list.  But
            notice how the space-before of this block is combined with the space-after of the 
            last block in the list, for a total of 2 inches.</fo:block>
      </fo:flow>
   </fo:page-sequence>

</fo:root>

