You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-users@xmlgraphics.apache.org by Selber Jean-François <jf...@oxymel.com> on 2004/05/06 17:59:20 UTC

problem with two columns document and

Hello,

I used fop 0.20.5
I make a document with two columns 
I have a table and I want to keep row together; I used <fo:table-row keep-with-next="always">
but it work only at the end of the second columns of the document and it doesn't work when the row I want to keep with next is placed at end of first column

how can I have the same result that I have on the second column?

thanks
Jean-Francois Selber


Re: problem with two columns document and

Posted by Clay Leeds <cl...@medata.com>.
Selber Jean-François wrote:

> There is a small fragment of  my xsl-fo code:
> 
> keep-with-next="always" on the first column it doesnt works:
> 
> <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="15px" space-after="0.5cm"
> font-weight="bold">ACTIVITÉS SCIENTIFIQUES</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="12px" space-after="0.3cm"
> font-weight="bold">Affiliation à des associations professionnelles et
> scientifiques:</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
> 
> keep-with-next="always" on the second column it works:
> 
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="15px" space-after="0.5cm"
> font-weight="bold">ACTIVITÉS ACADÉMIQUES</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="12px" space-after="0.8cm">Date d'entrée au Groupe
> HEC: 1973</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>

I'm not certain if this is causing the problem, but including 
number-rows-spanned="1" number-columns-spanned="1" in your table-cell 
items doesn't appear to 'do' anything.

Other than that, perhaps someone else has some insight?

Web Maestro Clay



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-user-help@xml.apache.org


Re: problem with two columns document and

Posted by Selber Jean-François <jf...@oxymel.com>.
thanks
keep-together="always" combined with keep-with-next solve my problem

----- Original Message ----- 
From: "Chris Pratt" <ch...@planetpratt.com>
To: <fo...@xml.apache.org>
Sent: Thursday, May 06, 2004 6:51 PM
Subject: RE: problem with two columns document and <fo:table-row
keep-with-next="always">


> Are you trying to keep everything in the table-row together, or keep the
> contents of the table-row from being broken between itself and the next
> table-row?  If you want everything in the table-row together in the same
> column, use keep-together="always", not keep-with-next.  Remember, you're
> acting on the row, not it's contents.  Keep-together keeps the contents
> together.  Keep-with-next keeps the row together with the next row.
>   (*Chris*)
>
> -----Original Message-----
> From: Selber Jean-François [mailto:jfselber@oxymel.com]
> Sent: Thursday, May 06, 2004 9:39 am
> To: fop-user@xml.apache.org
> Subject: Re: problem with two columns document and <fo:table-row
> keep-with-next="always">
>
> There is a small fragment of  my xsl-fo code:
>
> keep-with-next="always" on the first column it doesnt works:
>
> <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="15px" space-after="0.5cm"
> font-weight="bold">ACTIVITÉS SCIENTIFIQUES</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="12px" space-after="0.3cm"
> font-weight="bold">Affiliation à des associations professionnelles et
> scientifiques:</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>
> keep-with-next="always" on the second column it works:
>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="15px" space-after="0.5cm"
> font-weight="bold">ACTIVITÉS ACADÉMIQUES</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="12px" space-after="0.8cm">Date d'entrée au Groupe
> HEC: 1973</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>
> the complet sample:
>
>
> <?xml version="1.0" encoding="UTF-8"?>
> <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
> xmlns:ofcR="http://www.oxymel.com/ofc/reporting"
> xmlns:fox="http://xml.apache.org/fop/extensions"
> xmlns:xhtml="http://www.w3.org/1999/xhtml">
> <fo:layout-master-set>
> <fo:simple-page-master master-name="*_*" margin-left="2.5cm"
> margin-right="2.5cm" page-width="21cm" margin-bottom="2.5cm"
> margin-top="2.5cm" page-height="29.7cm">
> <fo:region-body region-name="xsl-region-body"/>
> <fo:region-before region-name="xsl-region-before-*_*"/>
> <fo:region-after region-name="xsl-region-after-*_*"/>
> <fo:region-start region-name="xsl-region-start-*_*"/>
> <fo:region-end region-name="xsl-region-end-*_*"/>
> </fo:simple-page-master>
> <fo:simple-page-master master-name="CV_*" margin-left="1cm"
> margin-right="1cm" page-width="21cm" margin-bottom="0.5cm"
> margin-top="0.5cm" page-height="29.7cm">
> <fo:region-body region-name="xsl-region-body" column-count="2"
> margin-bottom="2cm" margin-top="2.5cm"/>
> <fo:region-before region-name="xsl-region-before-CV_*" extent="1cm"/>
> <fo:region-after region-name="xsl-region-after-CV_*" extent="1cm"/>
> <fo:region-start region-name="xsl-region-start-CV_*"/>
> <fo:region-end region-name="xsl-region-end-CV_*"/>
> </fo:simple-page-master>
> <fo:page-sequence-master master-name="*">
> <fo:repeatable-page-master-alternatives>
> <fo:conditional-page-master-reference odd-or-even="any"
page-position="any"
> master-reference="*_*"/>
> </fo:repeatable-page-master-alternatives>
> </fo:page-sequence-master>
> <fo:page-sequence-master master-name="CV">
> <fo:repeatable-page-master-alternatives>
> <fo:conditional-page-master-reference odd-or-even="any"
page-position="any"
> master-reference="CV_*"/>
> </fo:repeatable-page-master-alternatives>
> </fo:page-sequence-master>
> </fo:layout-master-set>
>
>
> <fo:page-sequence master-reference="CV">
> <fo:static-content flow-name="xsl-region-before-CV_firstOdd">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_firstEven">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_first">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_odd">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_even">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_left">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_right">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_*">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_firstOdd">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_firstEven">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_first">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_odd">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_even">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_left">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_right">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_*">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:flow flow-name="xsl-region-body">
> <fo:block page="CV">
>
>  <fo:block font-size="15px" font-weight="bold"
> text-align="center">Robert</fo:block>
>  <fo:block font-size="17px" font-weight="bold"
> text-align="center">DROOPY</fo:block>
>
>  <fo:table width="100%" table-layout="fixed" space-before="0.5cm"
> space-after="0.5cm">
> <fo:table-column column-width="proportional-column-width(100)"/>
> <fo:table-body>
>   <fo:table-row>
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1"
> text-align="center">
> <fo:block>
> <fo:external-graphic src="src/photo.jpg" height="3.5cm" width="3cm"/>
> </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>  </fo:table-body>
> </fo:table>
>
>  <fo:block font-size="12px" space-after="0.6cm" text-align="center">Date
de
> naissance: 4 février 1900</fo:block>
>
>  <fo:block font-size="14px" font-weight="bold"
> text-align="center">Professeur Associé</fo:block>
>  <fo:block font-size="14px" font-weight="bold" text-align="center">Doyen
> Associé</fo:block>
>  <fo:block font-size="14px" font-weight="bold"
text-align="center">Directeur
> de recherche</fo:block>
>
>  <fo:block space-after="0.8cm" clear="none"/>
>
>  <fo:block font-size="14px" text-align="center">Département:</fo:block>
>  <fo:block font-size="14px" text-align="center">Finance et
> Economie</fo:block>
>  <fo:block font-size="14px" text-align="center">Directeur de
> recherche</fo:block>
>
>  <fo:block font-size="14px" text-align="center">Tél: 00 00 00 00
> 00</fo:block>
>  <fo:block font-size="14px" text-align="center">Fax: 00 00 00 00
> 00</fo:block>
>  <fo:block font-size="14px" text-align="center">Email:
> toto@hec.fr</fo:block>
>
>  <fo:block space-after="0.8cm" clear="none"/>
>
>  <fo:block font-size="15px" space-after="0.5cm"
> font-weight="bold">FORMATION</fo:block>
>
>  <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1968 Ancien élève de l'Ecole Polytechnique.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1970 Doctorat de 3e cycle en sciences de gestion, Université de
> Paris IX.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1972 Ph.D. in Management, Massachusetts Institute of
> Technology.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1986 Doctorat d'Etat en sciences de gestion.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>  </fo:list-block>
>
>  <fo:block font-size="12px" space-after="0.8cm">Langues:
anglais.</fo:block>
>
>  <fo:block font-size="15px" space-after="0.5cm" font-weight="bold">CENTRES
> D'INTÉRÊT</fo:block>
>
>  <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Gestion des risques dans le cadre des marchés financiers
> internationaux</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>  </fo:list-block>
>
>  <fo:table width="100%" table-layout="fixed">
> <fo:table-column column-width="proportional-column-width(100)"/>
> <fo:table-body>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="15px" space-after="0.5cm"
> font-weight="bold">ACTIVITÉS ACADÉMIQUES</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="12px" space-after="0.8cm">Date d'entrée au Groupe
> HEC: 1973</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row>
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="12px" space-after="0.3cm"
> font-weight="bold">Principaux cours enseignés au Groupe HEC:</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row>
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:list-block space-after="0.8cm" font-size="12px"
> text-align="justify">
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Marchés financiers et gestion de portefeuille.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>International portfolio management.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>International financial management.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>     </fo:list-block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>  </fo:table-body>
> </fo:table>
>
>  <fo:block font-size="12px" space-after="0.3cm"
> font-weight="bold">Responsabilités pédagogiques au sein du Groupe
> HEC:</fo:block>
>
>  <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Membre du Conseil scientifique du Doctorat.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>  </fo:list-block>
>
>  <fo:block font-size="12px" space-after="0.3cm" font-weight="bold">Cours
> enseignés et responsabilités pédagogiques dans d'autres
> institutions:</fo:block>
>
>  <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Directeur de recherche dans les programmes doctoraux de
> l'Université d'Orléans, Université de Paris IX et HEC.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1969-1970 Maître-Assistant en Economie: Micro-Economie,
Université
> de Paris.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1971-1972 M I T, Instructor in Management: Managerial
> Finance.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1972-1974 Assistant-professor, Graduate School of Business:
> Business Finance, International Finance, Stanford University.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1974-1986 Maître de Conférences en Sciences Economiques, Ecole
> Polytechnique.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1976 Visiting professor University of California, Berkeley:
> Investments.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1984 Professeur invité, Université de Genève.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1985 Visiting Professor, UCLA.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1988 Visiting Professor, Stanford University.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>  </fo:list-block>
>
>  <fo:block font-size="15px" space-after="0.5cm"
font-weight="bold">ACTIVITÉS
> EN ENTREPRISE</fo:block>
>
>  <fo:block font-size="12px" space-after="0.3cm"
font-weight="bold">Activité
> d'expertise:</fo:block>
>
>  <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Consultant en finance.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Administrateur de sociétés.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>  </fo:list-block>
>
>
>  <fo:table width="100%" table-layout="fixed">
> <fo:table-column column-width="proportional-column-width(100)"/>
> <fo:table-body>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="15px" space-after="0.5cm"
> font-weight="bold">ACTIVITÉS SCIENTIFIQUES</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="12px" space-after="0.3cm"
> font-weight="bold">Affiliation à des associations professionnelles et
> scientifiques:</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row>
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:list-block space-after="0.8cm" font-size="12px"
> text-align="justify">
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Membre et ancien président de l'European Finance
> Association.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Membre de l'American Finance Association. Administrateur de la
> Research Fondation de l'AIMR (2000-2003).</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Membre du Conseil Supérieur de la Recherche et de la Technologie
> (1997-2001).</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Conseiller scientifique de l'Institut Europlace de
> Finance.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Membre de l'Association Française de Finance.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>     </fo:list-block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>  </fo:table-body>
> </fo:table>
>
>
>
> </fo:block>
> <fo:block space-after="0pt" line-height="0pt" font-size="0pt"
> id="ofcrLastPageNumber"/>
> </fo:flow>
> </fo:page-sequence>
> </fo:root>
>
>
> ----- Original Message ----- 
> From: "Clay Leeds" <cl...@medata.com>
> To: <fo...@xml.apache.org>
> Sent: Thursday, May 06, 2004 6:10 PM
> Subject: Re: problem with two columns document and <fo:table-row
> keep-with-next="always">
>
>
> > Selber Jean-François wrote:
> > > Hello,
> > >
> > > I used fop 0.20.5
> > > I make a document with two columns
> > > I have a table and I want to keep row together; I used <fo:table-row
> keep-with-next="always">
> > > but it work only at the end of the second columns of the document and
it
> doesn't work when the row I want to keep with next is placed at end of
first
> column
> > >
> > > how can I have the same result that I have on the second column?
> > >
> > > thanks
> > > Jean-Francois Selber
> >
> > Can you post a (small) fragment of your xsl-fo code?
> >
> > Thx!
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
> > For additional commands, e-mail: fop-user-help@xml.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
> For additional commands, e-mail: fop-user-help@xml.apache.org
>
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
> For additional commands, e-mail: fop-user-help@xml.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-user-help@xml.apache.org


Re: problem with two columns document and

Posted by Bernd Brandstetter <bb...@freenet.de>.
Hi,

try keep-with-next.within-page="always" instead of only 
keep-with-next="always". This worked for me.

Bye,
Bernd

On Thursday 06 May 2004 18:56, Selber Jean-François wrote:
> I want only to keep the row together with the next row .
> it is why I used keep-with-next


---------------------------------------------------------------------
To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-user-help@xml.apache.org


RE: problem with two columns document and

Posted by "Andreas L. Delmelle" <a_...@pandora.be>.
> -----Original Message-----
> From: Selber Jean-François [mailto:jfselber@oxymel.com]
>
> I want only to keep the row together with the next row .
> it is why I used keep-with-next
>

Hi,

Have you tried using the property components:

keep-with-next.within-line
keep-with-next.within-column
keep-with-next.within-page

Not sure if these are fully implemented yet... but there's a remote
possibility that plain 'keep-with-next' just uses the page as context.


HTH!

Greetz,

Andreas


---------------------------------------------------------------------
To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-user-help@xml.apache.org


Re: problem with two columns document and

Posted by Selber Jean-François <jf...@oxymel.com>.
I want only to keep the row together with the next row .
it is why I used keep-with-next


----- Original Message ----- 
From: "Chris Pratt" <ch...@planetpratt.com>
To: <fo...@xml.apache.org>
Sent: Thursday, May 06, 2004 6:51 PM
Subject: RE: problem with two columns document and <fo:table-row
keep-with-next="always">


> Are you trying to keep everything in the table-row together, or keep the
> contents of the table-row from being broken between itself and the next
> table-row?  If you want everything in the table-row together in the same
> column, use keep-together="always", not keep-with-next.  Remember, you're
> acting on the row, not it's contents.  Keep-together keeps the contents
> together.  Keep-with-next keeps the row together with the next row.
>   (*Chris*)
>
> -----Original Message-----
> From: Selber Jean-François [mailto:jfselber@oxymel.com]
> Sent: Thursday, May 06, 2004 9:39 am
> To: fop-user@xml.apache.org
> Subject: Re: problem with two columns document and <fo:table-row
> keep-with-next="always">
>
> There is a small fragment of  my xsl-fo code:
>
> keep-with-next="always" on the first column it doesnt works:
>
> <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="15px" space-after="0.5cm"
> font-weight="bold">ACTIVITÉS SCIENTIFIQUES</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="12px" space-after="0.3cm"
> font-weight="bold">Affiliation à des associations professionnelles et
> scientifiques:</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>
> keep-with-next="always" on the second column it works:
>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="15px" space-after="0.5cm"
> font-weight="bold">ACTIVITÉS ACADÉMIQUES</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="12px" space-after="0.8cm">Date d'entrée au Groupe
> HEC: 1973</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>
> the complet sample:
>
>
> <?xml version="1.0" encoding="UTF-8"?>
> <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
> xmlns:ofcR="http://www.oxymel.com/ofc/reporting"
> xmlns:fox="http://xml.apache.org/fop/extensions"
> xmlns:xhtml="http://www.w3.org/1999/xhtml">
> <fo:layout-master-set>
> <fo:simple-page-master master-name="*_*" margin-left="2.5cm"
> margin-right="2.5cm" page-width="21cm" margin-bottom="2.5cm"
> margin-top="2.5cm" page-height="29.7cm">
> <fo:region-body region-name="xsl-region-body"/>
> <fo:region-before region-name="xsl-region-before-*_*"/>
> <fo:region-after region-name="xsl-region-after-*_*"/>
> <fo:region-start region-name="xsl-region-start-*_*"/>
> <fo:region-end region-name="xsl-region-end-*_*"/>
> </fo:simple-page-master>
> <fo:simple-page-master master-name="CV_*" margin-left="1cm"
> margin-right="1cm" page-width="21cm" margin-bottom="0.5cm"
> margin-top="0.5cm" page-height="29.7cm">
> <fo:region-body region-name="xsl-region-body" column-count="2"
> margin-bottom="2cm" margin-top="2.5cm"/>
> <fo:region-before region-name="xsl-region-before-CV_*" extent="1cm"/>
> <fo:region-after region-name="xsl-region-after-CV_*" extent="1cm"/>
> <fo:region-start region-name="xsl-region-start-CV_*"/>
> <fo:region-end region-name="xsl-region-end-CV_*"/>
> </fo:simple-page-master>
> <fo:page-sequence-master master-name="*">
> <fo:repeatable-page-master-alternatives>
> <fo:conditional-page-master-reference odd-or-even="any"
page-position="any"
> master-reference="*_*"/>
> </fo:repeatable-page-master-alternatives>
> </fo:page-sequence-master>
> <fo:page-sequence-master master-name="CV">
> <fo:repeatable-page-master-alternatives>
> <fo:conditional-page-master-reference odd-or-even="any"
page-position="any"
> master-reference="CV_*"/>
> </fo:repeatable-page-master-alternatives>
> </fo:page-sequence-master>
> </fo:layout-master-set>
>
>
> <fo:page-sequence master-reference="CV">
> <fo:static-content flow-name="xsl-region-before-CV_firstOdd">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_firstEven">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_first">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_odd">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_even">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_left">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_right">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-before-CV_*">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
> font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
> font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
> font-weight="bold">2003</fo:inline>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_firstOdd">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_firstEven">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_first">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_odd">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_even">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_left">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_right">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:static-content flow-name="xsl-region-after-CV_*">
> <fo:block>
>  <fo:block font-size="12px" text-align="center">
> <fo:page-number/>
> </fo:block>
> </fo:block>
> </fo:static-content>
> <fo:flow flow-name="xsl-region-body">
> <fo:block page="CV">
>
>  <fo:block font-size="15px" font-weight="bold"
> text-align="center">Robert</fo:block>
>  <fo:block font-size="17px" font-weight="bold"
> text-align="center">DROOPY</fo:block>
>
>  <fo:table width="100%" table-layout="fixed" space-before="0.5cm"
> space-after="0.5cm">
> <fo:table-column column-width="proportional-column-width(100)"/>
> <fo:table-body>
>   <fo:table-row>
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1"
> text-align="center">
> <fo:block>
> <fo:external-graphic src="src/photo.jpg" height="3.5cm" width="3cm"/>
> </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>  </fo:table-body>
> </fo:table>
>
>  <fo:block font-size="12px" space-after="0.6cm" text-align="center">Date
de
> naissance: 4 février 1900</fo:block>
>
>  <fo:block font-size="14px" font-weight="bold"
> text-align="center">Professeur Associé</fo:block>
>  <fo:block font-size="14px" font-weight="bold" text-align="center">Doyen
> Associé</fo:block>
>  <fo:block font-size="14px" font-weight="bold"
text-align="center">Directeur
> de recherche</fo:block>
>
>  <fo:block space-after="0.8cm" clear="none"/>
>
>  <fo:block font-size="14px" text-align="center">Département:</fo:block>
>  <fo:block font-size="14px" text-align="center">Finance et
> Economie</fo:block>
>  <fo:block font-size="14px" text-align="center">Directeur de
> recherche</fo:block>
>
>  <fo:block font-size="14px" text-align="center">Tél: 00 00 00 00
> 00</fo:block>
>  <fo:block font-size="14px" text-align="center">Fax: 00 00 00 00
> 00</fo:block>
>  <fo:block font-size="14px" text-align="center">Email:
> toto@hec.fr</fo:block>
>
>  <fo:block space-after="0.8cm" clear="none"/>
>
>  <fo:block font-size="15px" space-after="0.5cm"
> font-weight="bold">FORMATION</fo:block>
>
>  <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1968 Ancien élève de l'Ecole Polytechnique.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1970 Doctorat de 3e cycle en sciences de gestion, Université de
> Paris IX.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1972 Ph.D. in Management, Massachusetts Institute of
> Technology.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1986 Doctorat d'Etat en sciences de gestion.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>  </fo:list-block>
>
>  <fo:block font-size="12px" space-after="0.8cm">Langues:
anglais.</fo:block>
>
>  <fo:block font-size="15px" space-after="0.5cm" font-weight="bold">CENTRES
> D'INTÉRÊT</fo:block>
>
>  <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Gestion des risques dans le cadre des marchés financiers
> internationaux</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>  </fo:list-block>
>
>  <fo:table width="100%" table-layout="fixed">
> <fo:table-column column-width="proportional-column-width(100)"/>
> <fo:table-body>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="15px" space-after="0.5cm"
> font-weight="bold">ACTIVITÉS ACADÉMIQUES</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="12px" space-after="0.8cm">Date d'entrée au Groupe
> HEC: 1973</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row>
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="12px" space-after="0.3cm"
> font-weight="bold">Principaux cours enseignés au Groupe HEC:</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row>
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:list-block space-after="0.8cm" font-size="12px"
> text-align="justify">
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Marchés financiers et gestion de portefeuille.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>International portfolio management.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>International financial management.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>     </fo:list-block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>  </fo:table-body>
> </fo:table>
>
>  <fo:block font-size="12px" space-after="0.3cm"
> font-weight="bold">Responsabilités pédagogiques au sein du Groupe
> HEC:</fo:block>
>
>  <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Membre du Conseil scientifique du Doctorat.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>  </fo:list-block>
>
>  <fo:block font-size="12px" space-after="0.3cm" font-weight="bold">Cours
> enseignés et responsabilités pédagogiques dans d'autres
> institutions:</fo:block>
>
>  <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Directeur de recherche dans les programmes doctoraux de
> l'Université d'Orléans, Université de Paris IX et HEC.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1969-1970 Maître-Assistant en Economie: Micro-Economie,
Université
> de Paris.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1971-1972 M I T, Instructor in Management: Managerial
> Finance.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1972-1974 Assistant-professor, Graduate School of Business:
> Business Finance, International Finance, Stanford University.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1974-1986 Maître de Conférences en Sciences Economiques, Ecole
> Polytechnique.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1976 Visiting professor University of California, Berkeley:
> Investments.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1984 Professeur invité, Université de Genève.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1985 Visiting Professor, UCLA.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>1988 Visiting Professor, Stanford University.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>  </fo:list-block>
>
>  <fo:block font-size="15px" space-after="0.5cm"
font-weight="bold">ACTIVITÉS
> EN ENTREPRISE</fo:block>
>
>  <fo:block font-size="12px" space-after="0.3cm"
font-weight="bold">Activité
> d'expertise:</fo:block>
>
>  <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Consultant en finance.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>   <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Administrateur de sociétés.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>  </fo:list-block>
>
>
>  <fo:table width="100%" table-layout="fixed">
> <fo:table-column column-width="proportional-column-width(100)"/>
> <fo:table-body>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="15px" space-after="0.5cm"
> font-weight="bold">ACTIVITÉS SCIENTIFIQUES</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row keep-with-next="always">
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:block font-size="12px" space-after="0.3cm"
> font-weight="bold">Affiliation à des associations professionnelles et
> scientifiques:</fo:block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>   <fo:table-row>
>    <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
> <fo:block>
>     <fo:list-block space-after="0.8cm" font-size="12px"
> text-align="justify">
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Membre et ancien président de l'European Finance
> Association.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Membre de l'American Finance Association. Administrateur de la
> Research Fondation de l'AIMR (2000-2003).</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Membre du Conseil Supérieur de la Recherche et de la Technologie
> (1997-2001).</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Conseiller scientifique de l'Institut Europlace de
> Finance.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>      <fo:list-item>
> <fo:list-item-label end-indent="label-end()">
> <fo:block>
> <fo:inline font-size="18pt" font-weight="bold"
> font-family="Symbol">&#46;</fo:inline>
> </fo:block>
> </fo:list-item-label>
> <fo:list-item-body start-indent="body-start()">
> <fo:block>Membre de l'Association Française de Finance.</fo:block>
> </fo:list-item-body>
> </fo:list-item>
>     </fo:list-block>
>    </fo:block>
> </fo:table-cell>
>   </fo:table-row>
>  </fo:table-body>
> </fo:table>
>
>
>
> </fo:block>
> <fo:block space-after="0pt" line-height="0pt" font-size="0pt"
> id="ofcrLastPageNumber"/>
> </fo:flow>
> </fo:page-sequence>
> </fo:root>
>
>
> ----- Original Message ----- 
> From: "Clay Leeds" <cl...@medata.com>
> To: <fo...@xml.apache.org>
> Sent: Thursday, May 06, 2004 6:10 PM
> Subject: Re: problem with two columns document and <fo:table-row
> keep-with-next="always">
>
>
> > Selber Jean-François wrote:
> > > Hello,
> > >
> > > I used fop 0.20.5
> > > I make a document with two columns
> > > I have a table and I want to keep row together; I used <fo:table-row
> keep-with-next="always">
> > > but it work only at the end of the second columns of the document and
it
> doesn't work when the row I want to keep with next is placed at end of
first
> column
> > >
> > > how can I have the same result that I have on the second column?
> > >
> > > thanks
> > > Jean-Francois Selber
> >
> > Can you post a (small) fragment of your xsl-fo code?
> >
> > Thx!
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
> > For additional commands, e-mail: fop-user-help@xml.apache.org
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
> For additional commands, e-mail: fop-user-help@xml.apache.org
>
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
> For additional commands, e-mail: fop-user-help@xml.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-user-help@xml.apache.org


RE: problem with two columns document and

Posted by Chris Pratt <ch...@planetpratt.com>.
Are you trying to keep everything in the table-row together, or keep the
contents of the table-row from being broken between itself and the next
table-row?  If you want everything in the table-row together in the same
column, use keep-together="always", not keep-with-next.  Remember, you're
acting on the row, not it's contents.  Keep-together keeps the contents
together.  Keep-with-next keeps the row together with the next row.
  (*Chris*)

-----Original Message-----
From: Selber Jean-François [mailto:jfselber@oxymel.com] 
Sent: Thursday, May 06, 2004 9:39 am
To: fop-user@xml.apache.org
Subject: Re: problem with two columns document and <fo:table-row
keep-with-next="always">

There is a small fragment of  my xsl-fo code:

keep-with-next="always" on the first column it doesnt works:

<fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="15px" space-after="0.5cm"
font-weight="bold">ACTIVITÉS SCIENTIFIQUES</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="12px" space-after="0.3cm"
font-weight="bold">Affiliation à des associations professionnelles et
scientifiques:</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>

keep-with-next="always" on the second column it works:

  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="15px" space-after="0.5cm"
font-weight="bold">ACTIVITÉS ACADÉMIQUES</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="12px" space-after="0.8cm">Date d'entrée au Groupe
HEC: 1973</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>

the complet sample:


<?xml version="1.0" encoding="UTF-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:ofcR="http://www.oxymel.com/ofc/reporting"
xmlns:fox="http://xml.apache.org/fop/extensions"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<fo:layout-master-set>
<fo:simple-page-master master-name="*_*" margin-left="2.5cm"
margin-right="2.5cm" page-width="21cm" margin-bottom="2.5cm"
margin-top="2.5cm" page-height="29.7cm">
<fo:region-body region-name="xsl-region-body"/>
<fo:region-before region-name="xsl-region-before-*_*"/>
<fo:region-after region-name="xsl-region-after-*_*"/>
<fo:region-start region-name="xsl-region-start-*_*"/>
<fo:region-end region-name="xsl-region-end-*_*"/>
</fo:simple-page-master>
<fo:simple-page-master master-name="CV_*" margin-left="1cm"
margin-right="1cm" page-width="21cm" margin-bottom="0.5cm"
margin-top="0.5cm" page-height="29.7cm">
<fo:region-body region-name="xsl-region-body" column-count="2"
margin-bottom="2cm" margin-top="2.5cm"/>
<fo:region-before region-name="xsl-region-before-CV_*" extent="1cm"/>
<fo:region-after region-name="xsl-region-after-CV_*" extent="1cm"/>
<fo:region-start region-name="xsl-region-start-CV_*"/>
<fo:region-end region-name="xsl-region-end-CV_*"/>
</fo:simple-page-master>
<fo:page-sequence-master master-name="*">
<fo:repeatable-page-master-alternatives>
<fo:conditional-page-master-reference odd-or-even="any" page-position="any"
master-reference="*_*"/>
</fo:repeatable-page-master-alternatives>
</fo:page-sequence-master>
<fo:page-sequence-master master-name="CV">
<fo:repeatable-page-master-alternatives>
<fo:conditional-page-master-reference odd-or-even="any" page-position="any"
master-reference="CV_*"/>
</fo:repeatable-page-master-alternatives>
</fo:page-sequence-master>
</fo:layout-master-set>


<fo:page-sequence master-reference="CV">
<fo:static-content flow-name="xsl-region-before-CV_firstOdd">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_firstEven">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_first">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_odd">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_even">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_left">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_right">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_*">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_firstOdd">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_firstEven">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_first">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_odd">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_even">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_left">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_right">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_*">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:flow flow-name="xsl-region-body">
<fo:block page="CV">

 <fo:block font-size="15px" font-weight="bold"
text-align="center">Robert</fo:block>
 <fo:block font-size="17px" font-weight="bold"
text-align="center">DROOPY</fo:block>

 <fo:table width="100%" table-layout="fixed" space-before="0.5cm"
space-after="0.5cm">
<fo:table-column column-width="proportional-column-width(100)"/>
<fo:table-body>
  <fo:table-row>
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1"
text-align="center">
<fo:block>
<fo:external-graphic src="src/photo.jpg" height="3.5cm" width="3cm"/>
</fo:block>
</fo:table-cell>
  </fo:table-row>
 </fo:table-body>
</fo:table>

 <fo:block font-size="12px" space-after="0.6cm" text-align="center">Date de
naissance: 4 février 1900</fo:block>

 <fo:block font-size="14px" font-weight="bold"
text-align="center">Professeur Associé</fo:block>
 <fo:block font-size="14px" font-weight="bold" text-align="center">Doyen
Associé</fo:block>
 <fo:block font-size="14px" font-weight="bold" text-align="center">Directeur
de recherche</fo:block>

 <fo:block space-after="0.8cm" clear="none"/>

 <fo:block font-size="14px" text-align="center">Département:</fo:block>
 <fo:block font-size="14px" text-align="center">Finance et
Economie</fo:block>
 <fo:block font-size="14px" text-align="center">Directeur de
recherche</fo:block>

 <fo:block font-size="14px" text-align="center">Tél: 00 00 00 00
00</fo:block>
 <fo:block font-size="14px" text-align="center">Fax: 00 00 00 00
00</fo:block>
 <fo:block font-size="14px" text-align="center">Email:
toto@hec.fr</fo:block>

 <fo:block space-after="0.8cm" clear="none"/>

 <fo:block font-size="15px" space-after="0.5cm"
font-weight="bold">FORMATION</fo:block>

 <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1968 Ancien élève de l'Ecole Polytechnique.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1970 Doctorat de 3e cycle en sciences de gestion, Université de
Paris IX.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1972 Ph.D. in Management, Massachusetts Institute of
Technology.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1986 Doctorat d'Etat en sciences de gestion.</fo:block>
</fo:list-item-body>
</fo:list-item>
 </fo:list-block>

 <fo:block font-size="12px" space-after="0.8cm">Langues: anglais.</fo:block>

 <fo:block font-size="15px" space-after="0.5cm" font-weight="bold">CENTRES
D'INTÉRÊT</fo:block>

 <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Gestion des risques dans le cadre des marchés financiers
internationaux</fo:block>
</fo:list-item-body>
</fo:list-item>
 </fo:list-block>

 <fo:table width="100%" table-layout="fixed">
<fo:table-column column-width="proportional-column-width(100)"/>
<fo:table-body>
  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="15px" space-after="0.5cm"
font-weight="bold">ACTIVITÉS ACADÉMIQUES</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="12px" space-after="0.8cm">Date d'entrée au Groupe
HEC: 1973</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row>
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="12px" space-after="0.3cm"
font-weight="bold">Principaux cours enseignés au Groupe HEC:</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row>
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:list-block space-after="0.8cm" font-size="12px"
text-align="justify">
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Marchés financiers et gestion de portefeuille.</fo:block>
</fo:list-item-body>
</fo:list-item>
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>International portfolio management.</fo:block>
</fo:list-item-body>
</fo:list-item>
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>International financial management.</fo:block>
</fo:list-item-body>
</fo:list-item>
    </fo:list-block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
 </fo:table-body>
</fo:table>

 <fo:block font-size="12px" space-after="0.3cm"
font-weight="bold">Responsabilités pédagogiques au sein du Groupe
HEC:</fo:block>

 <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Membre du Conseil scientifique du Doctorat.</fo:block>
</fo:list-item-body>
</fo:list-item>
 </fo:list-block>

 <fo:block font-size="12px" space-after="0.3cm" font-weight="bold">Cours
enseignés et responsabilités pédagogiques dans d'autres
institutions:</fo:block>

 <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Directeur de recherche dans les programmes doctoraux de
l'Université d'Orléans, Université de Paris IX et HEC.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1969-1970 Maître-Assistant en Economie: Micro-Economie, Université
de Paris.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1971-1972 M I T, Instructor in Management: Managerial
Finance.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1972-1974 Assistant-professor, Graduate School of Business:
Business Finance, International Finance, Stanford University.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1974-1986 Maître de Conférences en Sciences Economiques, Ecole
Polytechnique.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1976 Visiting professor University of California, Berkeley:
Investments.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1984 Professeur invité, Université de Genève.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1985 Visiting Professor, UCLA.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1988 Visiting Professor, Stanford University.</fo:block>
</fo:list-item-body>
</fo:list-item>
 </fo:list-block>

 <fo:block font-size="15px" space-after="0.5cm" font-weight="bold">ACTIVITÉS
EN ENTREPRISE</fo:block>

 <fo:block font-size="12px" space-after="0.3cm" font-weight="bold">Activité
d'expertise:</fo:block>

 <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Consultant en finance.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Administrateur de sociétés.</fo:block>
</fo:list-item-body>
</fo:list-item>
 </fo:list-block>


 <fo:table width="100%" table-layout="fixed">
<fo:table-column column-width="proportional-column-width(100)"/>
<fo:table-body>
  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="15px" space-after="0.5cm"
font-weight="bold">ACTIVITÉS SCIENTIFIQUES</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="12px" space-after="0.3cm"
font-weight="bold">Affiliation à des associations professionnelles et
scientifiques:</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row>
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:list-block space-after="0.8cm" font-size="12px"
text-align="justify">
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Membre et ancien président de l'European Finance
Association.</fo:block>
</fo:list-item-body>
</fo:list-item>
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Membre de l'American Finance Association. Administrateur de la
Research Fondation de l'AIMR (2000-2003).</fo:block>
</fo:list-item-body>
</fo:list-item>
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Membre du Conseil Supérieur de la Recherche et de la Technologie
(1997-2001).</fo:block>
</fo:list-item-body>
</fo:list-item>
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Conseiller scientifique de l'Institut Europlace de
Finance.</fo:block>
</fo:list-item-body>
</fo:list-item>
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Membre de l'Association Française de Finance.</fo:block>
</fo:list-item-body>
</fo:list-item>
    </fo:list-block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
 </fo:table-body>
</fo:table>



</fo:block>
<fo:block space-after="0pt" line-height="0pt" font-size="0pt"
id="ofcrLastPageNumber"/>
</fo:flow>
</fo:page-sequence>
</fo:root>


----- Original Message ----- 
From: "Clay Leeds" <cl...@medata.com>
To: <fo...@xml.apache.org>
Sent: Thursday, May 06, 2004 6:10 PM
Subject: Re: problem with two columns document and <fo:table-row
keep-with-next="always">


> Selber Jean-François wrote:
> > Hello,
> >
> > I used fop 0.20.5
> > I make a document with two columns
> > I have a table and I want to keep row together; I used <fo:table-row
keep-with-next="always">
> > but it work only at the end of the second columns of the document and it
doesn't work when the row I want to keep with next is placed at end of first
column
> >
> > how can I have the same result that I have on the second column?
> >
> > thanks
> > Jean-Francois Selber
>
> Can you post a (small) fragment of your xsl-fo code?
>
> Thx!
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
> For additional commands, e-mail: fop-user-help@xml.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-user-help@xml.apache.org





---------------------------------------------------------------------
To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-user-help@xml.apache.org


Re: problem with two columns document and

Posted by Selber Jean-François <jf...@oxymel.com>.
There is a small fragment of  my xsl-fo code:

keep-with-next="always" on the first column it doesnt works:

<fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="15px" space-after="0.5cm"
font-weight="bold">ACTIVITÉS SCIENTIFIQUES</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="12px" space-after="0.3cm"
font-weight="bold">Affiliation à des associations professionnelles et
scientifiques:</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>

keep-with-next="always" on the second column it works:

  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="15px" space-after="0.5cm"
font-weight="bold">ACTIVITÉS ACADÉMIQUES</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="12px" space-after="0.8cm">Date d'entrée au Groupe
HEC: 1973</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>

the complet sample:


<?xml version="1.0" encoding="UTF-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:ofcR="http://www.oxymel.com/ofc/reporting"
xmlns:fox="http://xml.apache.org/fop/extensions"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<fo:layout-master-set>
<fo:simple-page-master master-name="*_*" margin-left="2.5cm"
margin-right="2.5cm" page-width="21cm" margin-bottom="2.5cm"
margin-top="2.5cm" page-height="29.7cm">
<fo:region-body region-name="xsl-region-body"/>
<fo:region-before region-name="xsl-region-before-*_*"/>
<fo:region-after region-name="xsl-region-after-*_*"/>
<fo:region-start region-name="xsl-region-start-*_*"/>
<fo:region-end region-name="xsl-region-end-*_*"/>
</fo:simple-page-master>
<fo:simple-page-master master-name="CV_*" margin-left="1cm"
margin-right="1cm" page-width="21cm" margin-bottom="0.5cm"
margin-top="0.5cm" page-height="29.7cm">
<fo:region-body region-name="xsl-region-body" column-count="2"
margin-bottom="2cm" margin-top="2.5cm"/>
<fo:region-before region-name="xsl-region-before-CV_*" extent="1cm"/>
<fo:region-after region-name="xsl-region-after-CV_*" extent="1cm"/>
<fo:region-start region-name="xsl-region-start-CV_*"/>
<fo:region-end region-name="xsl-region-end-CV_*"/>
</fo:simple-page-master>
<fo:page-sequence-master master-name="*">
<fo:repeatable-page-master-alternatives>
<fo:conditional-page-master-reference odd-or-even="any" page-position="any"
master-reference="*_*"/>
</fo:repeatable-page-master-alternatives>
</fo:page-sequence-master>
<fo:page-sequence-master master-name="CV">
<fo:repeatable-page-master-alternatives>
<fo:conditional-page-master-reference odd-or-even="any" page-position="any"
master-reference="CV_*"/>
</fo:repeatable-page-master-alternatives>
</fo:page-sequence-master>
</fo:layout-master-set>


<fo:page-sequence master-reference="CV">
<fo:static-content flow-name="xsl-region-before-CV_firstOdd">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_firstEven">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_first">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_odd">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_even">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_left">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_right">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-before-CV_*">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:inline font-weight="bold">C</fo:inline> o r p s    <fo:inline
font-weight="bold">P</fo:inline> r o f e s s o r a l    <fo:inline
font-weight="bold">P</fo:inline> e r m a n e n t    <fo:inline
font-weight="bold">2003</fo:inline>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_firstOdd">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_firstEven">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_first">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_odd">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_even">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_left">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_right">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after-CV_*">
<fo:block>
 <fo:block font-size="12px" text-align="center">
<fo:page-number/>
</fo:block>
</fo:block>
</fo:static-content>
<fo:flow flow-name="xsl-region-body">
<fo:block page="CV">

 <fo:block font-size="15px" font-weight="bold"
text-align="center">Robert</fo:block>
 <fo:block font-size="17px" font-weight="bold"
text-align="center">DROOPY</fo:block>

 <fo:table width="100%" table-layout="fixed" space-before="0.5cm"
space-after="0.5cm">
<fo:table-column column-width="proportional-column-width(100)"/>
<fo:table-body>
  <fo:table-row>
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1"
text-align="center">
<fo:block>
<fo:external-graphic src="src/photo.jpg" height="3.5cm" width="3cm"/>
</fo:block>
</fo:table-cell>
  </fo:table-row>
 </fo:table-body>
</fo:table>

 <fo:block font-size="12px" space-after="0.6cm" text-align="center">Date de
naissance: 4 février 1900</fo:block>

 <fo:block font-size="14px" font-weight="bold"
text-align="center">Professeur Associé</fo:block>
 <fo:block font-size="14px" font-weight="bold" text-align="center">Doyen
Associé</fo:block>
 <fo:block font-size="14px" font-weight="bold" text-align="center">Directeur
de recherche</fo:block>

 <fo:block space-after="0.8cm" clear="none"/>

 <fo:block font-size="14px" text-align="center">Département:</fo:block>
 <fo:block font-size="14px" text-align="center">Finance et
Economie</fo:block>
 <fo:block font-size="14px" text-align="center">Directeur de
recherche</fo:block>

 <fo:block font-size="14px" text-align="center">Tél: 00 00 00 00
00</fo:block>
 <fo:block font-size="14px" text-align="center">Fax: 00 00 00 00
00</fo:block>
 <fo:block font-size="14px" text-align="center">Email:
toto@hec.fr</fo:block>

 <fo:block space-after="0.8cm" clear="none"/>

 <fo:block font-size="15px" space-after="0.5cm"
font-weight="bold">FORMATION</fo:block>

 <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1968 Ancien élève de l'Ecole Polytechnique.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1970 Doctorat de 3e cycle en sciences de gestion, Université de
Paris IX.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1972 Ph.D. in Management, Massachusetts Institute of
Technology.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1986 Doctorat d'Etat en sciences de gestion.</fo:block>
</fo:list-item-body>
</fo:list-item>
 </fo:list-block>

 <fo:block font-size="12px" space-after="0.8cm">Langues: anglais.</fo:block>

 <fo:block font-size="15px" space-after="0.5cm" font-weight="bold">CENTRES
D'INTÉRÊT</fo:block>

 <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Gestion des risques dans le cadre des marchés financiers
internationaux</fo:block>
</fo:list-item-body>
</fo:list-item>
 </fo:list-block>

 <fo:table width="100%" table-layout="fixed">
<fo:table-column column-width="proportional-column-width(100)"/>
<fo:table-body>
  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="15px" space-after="0.5cm"
font-weight="bold">ACTIVITÉS ACADÉMIQUES</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="12px" space-after="0.8cm">Date d'entrée au Groupe
HEC: 1973</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row>
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="12px" space-after="0.3cm"
font-weight="bold">Principaux cours enseignés au Groupe HEC:</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row>
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:list-block space-after="0.8cm" font-size="12px"
text-align="justify">
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Marchés financiers et gestion de portefeuille.</fo:block>
</fo:list-item-body>
</fo:list-item>
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>International portfolio management.</fo:block>
</fo:list-item-body>
</fo:list-item>
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>International financial management.</fo:block>
</fo:list-item-body>
</fo:list-item>
    </fo:list-block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
 </fo:table-body>
</fo:table>

 <fo:block font-size="12px" space-after="0.3cm"
font-weight="bold">Responsabilités pédagogiques au sein du Groupe
HEC:</fo:block>

 <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Membre du Conseil scientifique du Doctorat.</fo:block>
</fo:list-item-body>
</fo:list-item>
 </fo:list-block>

 <fo:block font-size="12px" space-after="0.3cm" font-weight="bold">Cours
enseignés et responsabilités pédagogiques dans d'autres
institutions:</fo:block>

 <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Directeur de recherche dans les programmes doctoraux de
l'Université d'Orléans, Université de Paris IX et HEC.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1969-1970 Maître-Assistant en Economie: Micro-Economie, Université
de Paris.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1971-1972 M I T, Instructor in Management: Managerial
Finance.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1972-1974 Assistant-professor, Graduate School of Business:
Business Finance, International Finance, Stanford University.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1974-1986 Maître de Conférences en Sciences Economiques, Ecole
Polytechnique.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1976 Visiting professor University of California, Berkeley:
Investments.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1984 Professeur invité, Université de Genève.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1985 Visiting Professor, UCLA.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>1988 Visiting Professor, Stanford University.</fo:block>
</fo:list-item-body>
</fo:list-item>
 </fo:list-block>

 <fo:block font-size="15px" space-after="0.5cm" font-weight="bold">ACTIVITÉS
EN ENTREPRISE</fo:block>

 <fo:block font-size="12px" space-after="0.3cm" font-weight="bold">Activité
d'expertise:</fo:block>

 <fo:list-block space-after="0.8cm" font-size="12px" text-align="justify">
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Consultant en finance.</fo:block>
</fo:list-item-body>
</fo:list-item>
  <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Administrateur de sociétés.</fo:block>
</fo:list-item-body>
</fo:list-item>
 </fo:list-block>


 <fo:table width="100%" table-layout="fixed">
<fo:table-column column-width="proportional-column-width(100)"/>
<fo:table-body>
  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="15px" space-after="0.5cm"
font-weight="bold">ACTIVITÉS SCIENTIFIQUES</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row keep-with-next="always">
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:block font-size="12px" space-after="0.3cm"
font-weight="bold">Affiliation à des associations professionnelles et
scientifiques:</fo:block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
  <fo:table-row>
   <fo:table-cell number-rows-spanned="1" number-columns-spanned="1">
<fo:block>
    <fo:list-block space-after="0.8cm" font-size="12px"
text-align="justify">
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Membre et ancien président de l'European Finance
Association.</fo:block>
</fo:list-item-body>
</fo:list-item>
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Membre de l'American Finance Association. Administrateur de la
Research Fondation de l'AIMR (2000-2003).</fo:block>
</fo:list-item-body>
</fo:list-item>
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Membre du Conseil Supérieur de la Recherche et de la Technologie
(1997-2001).</fo:block>
</fo:list-item-body>
</fo:list-item>
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Conseiller scientifique de l'Institut Europlace de
Finance.</fo:block>
</fo:list-item-body>
</fo:list-item>
     <fo:list-item>
<fo:list-item-label end-indent="label-end()">
<fo:block>
<fo:inline font-size="18pt" font-weight="bold"
font-family="Symbol">&#46;</fo:inline>
</fo:block>
</fo:list-item-label>
<fo:list-item-body start-indent="body-start()">
<fo:block>Membre de l'Association Française de Finance.</fo:block>
</fo:list-item-body>
</fo:list-item>
    </fo:list-block>
   </fo:block>
</fo:table-cell>
  </fo:table-row>
 </fo:table-body>
</fo:table>



</fo:block>
<fo:block space-after="0pt" line-height="0pt" font-size="0pt"
id="ofcrLastPageNumber"/>
</fo:flow>
</fo:page-sequence>
</fo:root>


----- Original Message ----- 
From: "Clay Leeds" <cl...@medata.com>
To: <fo...@xml.apache.org>
Sent: Thursday, May 06, 2004 6:10 PM
Subject: Re: problem with two columns document and <fo:table-row
keep-with-next="always">


> Selber Jean-François wrote:
> > Hello,
> >
> > I used fop 0.20.5
> > I make a document with two columns
> > I have a table and I want to keep row together; I used <fo:table-row
keep-with-next="always">
> > but it work only at the end of the second columns of the document and it
doesn't work when the row I want to keep with next is placed at end of first
column
> >
> > how can I have the same result that I have on the second column?
> >
> > thanks
> > Jean-Francois Selber
>
> Can you post a (small) fragment of your xsl-fo code?
>
> Thx!
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
> For additional commands, e-mail: fop-user-help@xml.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-user-help@xml.apache.org


Re: problem with two columns document and

Posted by Clay Leeds <cl...@medata.com>.
Selber Jean-François wrote:
> Hello,
> 
> I used fop 0.20.5
> I make a document with two columns 
> I have a table and I want to keep row together; I used <fo:table-row keep-with-next="always">
> but it work only at the end of the second columns of the document and it doesn't work when the row I want to keep with next is placed at end of first column
> 
> how can I have the same result that I have on the second column?
> 
> thanks
> Jean-Francois Selber

Can you post a (small) fragment of your xsl-fo code?

Thx!

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-user-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-user-help@xml.apache.org