When some text is directly included into fo:wrapper object, it is not 
displayed.
When I use something like this:

normal text <fo:wrapper color="red">red text</fo:wrapper> more normal 
text

instead of displaying red "red text" nothing is displayed.

when I surround text inside fo:wrapper into fo:inline resulting in 
this:

normal text <fo:wrapper color="blue"><fo:inline>blue 
text</fo:inline></fo:wrapper> more normal text

things seems to be OK, but this shouldn't be nescessary

<?xml version="1.0" encoding="UTF-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format";>
        <fo:layout-master-set>
            <fo:simple-page-master master-name="simplePM"
                          page-height="25cm" 
                          page-width="20cm"
                          margin-top="1cm" 
                          margin-bottom="1cm" 
                          margin-left="1.5cm" 
                          margin-right="1.5cm">
              <fo:region-before extent="2.5cm"/>
              <fo:region-body margin-top="3cm" margin-bottom="3cm"/>
              <fo:region-after extent="2.5cm"/>
            </fo:simple-page-master>
        </fo:layout-master-set>

        <fo:page-sequence master-name="simplePM">
            <fo:flow flow-name="xsl-region-body">
                        <fo:block>
                                normal text <fo:wrapper color="red">red 
text</fo:wrapper> more normal text
                        </fo:block>
                        <fo:block>
                                normal text <fo:wrapper color="blue"><fo:inline>blue 
text</fo:inline></fo:wrapper> more normal text
                        </fo:block>
                </fo:flow>
        </fo:page-sequence>
</fo:root>

wdemof.pdf

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to