Hi all,
I'm using FOP 1.0 to convert a wordml document into PDF. In this document
we have two sections separated by a *Continuous section break*. The first
section has one column, the second two columns.
The resulting PDF shows the two sections correctly displayed but in
different pages. I wanna get these both sections with their particular
properties in the same page****** as well as they are displayed in word.
Following is the wordml code where the two sections are defined:
<w:body>
<wx:sect>
<w:p wsp:rsidR="00B91B02" wsp:rsidRDefault="00B91B02">
<w:r>
<w:t>Paragraph1</w:t>
</w:r>
</w:p>
<w:p wsp:rsidR="00DE1CD7" wsp:rsidRDefault="00DE1CD7">
<w:pPr>
<w:sectPr wsp:rsidR="00DE1CD7"
wsp:rsidSect="00281A4C">
<w:pgSz w:w="11906" w:h="16838" w:code="9"/>
<w:pgMar w:top="2106" w:right="1418"
w:bottom="1701" w:left="1418" w:header="851" w:footer="851" w:gutter="0"/>
<w:cols w:space="708"/>
<w:titlePg/>
<w:docGrid
w:line-pitch="360"/>
</w:sectPr>
</w:pPr>
</w:p>
</wx:sect>
<wx:sect>
<w:p wsp:rsidR="004C4178"
wsp:rsidRDefault="00B91B02">
<w:r>
<w:t>Paragraph2</w:t>
</w:r>
</w:p>
<w:sectPr wsp:rsidR="004C4178"
wsp:rsidSect="00B91B02">
<w:type w:val="continuous"/>
<w:pgSz w:w="11906"
w:h="16838" w:code="9"/>
<w:pgMar w:top="2106"
w:right="1418" w:bottom="1701" w:left="1418" w:header="851" w:footer="851"
w:gutter="0"/>
<w:cols w:num="2"
w:space="708" w:equalWidth="off">
<w:col w:w="4181"
w:space="708"/>
<w:col
w:w="4181"/>
</w:cols>
<w:titlePg/>
<w:docGrid
w:line-pitch="360"/>
</w:sectPr>
</wx:sect>
</w:body>
My xsl code is too big to be posted here, I guess.
Anyone has any clue on this issue?
Tnaks in advance.