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:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 9:39 am To: [EMAIL PROTECTED] 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: [EMAIL PROTECTED]</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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">.</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" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> 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: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]