Hi, I just discovered (?) a issue in the list-block containing inline with vertical-align. The output shows <fo:list-item-label> and <fo:list-item-body> "putted out of line" (i'm not sure if this is the correct verb, sorry!!). I just checked with the list.fo example and the problem persists.
You can see what i mean in this pdf http://www.nabble.com/file/3993/listinline.pdf listinline.pdf Here is the fo: <?xml version="1.0" encoding="utf-8"?> <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> <fo:layout-master-set> <!-- layout for the first page --> <fo:simple-page-master master-name="first" page-height="29,7cm" page-width="21cm" margin-top="1cm" margin-bottom="2cm" margin-left="2.5cm" margin-right="2.5cm"> <fo:region-body margin-top="3cm"/> <fo:region-before extent="3cm"/> <fo:region-after extent="1.5cm"/> </fo:simple-page-master> <fo:page-sequence-master master-name="basicPSM" > <fo:repeatable-page-master-alternatives> <fo:conditional-page-master-reference master-reference="first" page-position="first" /> </fo:repeatable-page-master-alternatives> </fo:page-sequence-master> </fo:layout-master-set> <!-- end: defines page layout --> <!-- actual layout --> <fo:page-sequence master-reference="basicPSM"> <!-- header --> <fo:static-content flow-name="xsl-region-before"> <fo:block text-align="end" font-size="10pt" font-family="serif" line-height="14pt" > Generated with latest trunk - 6/11/2006 </fo:block> </fo:static-content> <fo:flow flow-name="xsl-region-body"> <fo:list-block space-after.conditionality="retain" font-size="9.5pt" line-height="15.35pt" text-align="justify" space-after="0pt" provisional-distance-between-starts="6mm"> <fo:list-item> <fo:list-item-label end-indent="label-end()"> <fo:block font-weight="bold">1)</fo:block> </fo:list-item-label> <fo:list-item-body start-indent="body-start()"> <fo:block space-after.conditionality="retain" space-after="15.35pt">First item without inline</fo:block> </fo:list-item-body> </fo:list-item> <fo:list-item> <fo:list-item-label end-indent="label-end()"> <fo:block font-weight="bold">2)</fo:block> </fo:list-item-label> <fo:list-item-body start-indent="body-start()"> <fo:block space-after.conditionality="retain" space-after="15.35pt">Second item with one inline with vertical-align="super" <fo:inline vertical-align="super" font-size="6pt">word</fo:inline></fo:block> </fo:list-item-body> </fo:list-item> <fo:list-item> <fo:list-item-label end-indent="label-end()"> <fo:block font-weight="bold">3)</fo:block> </fo:list-item-label> <fo:list-item-body start-indent="body-start()"> <fo:block space-after.conditionality="retain" space-after="15.35pt">Third item with one inline with vertical-align="sub" <fo:inline vertical-align="sub" font-size="6pt">inline</fo:inline></fo:block> </fo:list-item-body> </fo:list-item> </fo:list-block> </fo:flow> </fo:page-sequence> </fo:root> Cheers, -- View this message in context: http://www.nabble.com/Lists-with-inline-and-superscript-tf2583700.html#a7202803 Sent from the FOP - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
