> -----Original Message----- > From: Thirugnanam, Kalusivalingam [mailto:[EMAIL PROTECTED]
Hi, > When I am using the following FO script for displaying > "15th" (Expected), I am getting "15 th" (Actual). <fo:inline font-family="Minion-Bold">15</fo:inline><fo:inline vertical-align="super" font-family="Minion-Bold" color="red" font-size="5pt">th</fo:inline> Not sure why why you need two fo:inlines for this... Just remember that the pieces of text can be considered inline areas even when not surrounded by an explicit fo:inline. The following code renders fine for me: <fo:block font-family="Courier"> 15<fo:inline vertical-align="super" font-size="5pt">th</fo:inline> </fo:block> So does: <fo:block font-family="Helvetica"> some other text <fo:wrapper font-family="Courier">15<fo:inline vertical-align="super" font-size="5pt">th</fo:inline></fo:wrapper> </fo:block> HTH! Greetz, Andreas --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]