Ben Galbraith wrote:
Unfortunately, I need to create a block in a region-before that's divided into two columns. As this notion is not supported by XSL 1.0, I needn't wonder if FOP supports this in some way.

Can you use fo:table to create 2 columns?

<fo:static-content flow-name="xsl-region-before">

<fo:block padding="0pt">
<fo:table border="0pt" table-layout="fixed" margin-top="4pt">
  <fo:table-column column-width="10cm"/>
  <fo:table-column column-width="10cm"/>
  <fo:table-body>
    <fo:table-row>
      <fo:table-cell padding="1pt">
        <fo:block keep-with-next.within-page="always" font-weight="bold">
          Patient
        </fo:block>
      </fo:table-cell>
      <fo:table-cell padding="1pt">
        <fo:block keep-with-next.within-page="always">
          Gina Latta
        </fo:block>
      </fo:table-cell>
    </fo:table-row>
  </fo:table-body>
</fo:table>
</fo:static-content>


-- Clay Leeds - [EMAIL PROTECTED] Web Developer - Medata, Inc. - http://www.medata.com PGP Public Key: https://mail.medata.com/pgp/cleeds.asc


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



Reply via email to