XSL FO inline alignment - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T16:37:46Zhttp://stackoverflow.com/feeds/question/391759http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/391759/xsl-fo-inline-alignment1XSL FO inline alignmentIkke2008-12-24T16:24:42Z2009-02-26T12:21:05Z
<p>I need to get text aligned right and left on the same line. This should be possible, but i can't seem to find a way. I'm using Apache FOP to convert xml to pdf.</p>
<p>Can someone help me to get this right?</p>
http://stackoverflow.com/questions/391759/xsl-fo-inline-alignment/391775#3917750Answer by Martijn Laarman for XSL FO inline alignmentMartijn Laarman2008-12-24T16:38:13Z2008-12-24T16:46:24Z<p>This is possible i'm not sure what the exact output is but have you tried:</p>
<pre><code><fo:block-container>
<fo:block text-align="left">text</fo:block>
<fo:block text-align="right">text</fo:block>
</fo:block-container >
</code></pre>
<p>I haven't done XSLFO in a while but i can certainly recommend Stylus Studio for XSL-FO development (and in general XML), The in-app debugging and previewing saved my ass on finishing deadlines on time. You can make Stylus work with the Apache FOP processor as well.</p>
<p>PS: I would have double checked if i had Apache FOP etcetera set up correctly back at home as well.</p>
http://stackoverflow.com/questions/391759/xsl-fo-inline-alignment/505345#5053450Answer by EthR for XSL FO inline alignmentEthR2009-02-02T22:59:16Z2009-02-02T22:59:16Z<p>I dont't have the time right now to test this but check out <a href="http://www.w3.org/TR/xsl/#fo_float" rel="nofollow">http://www.w3.org/TR/xsl/#fo_float</a></p>
<p>float one right float the other left - i'd give it a shot if I was looking to do what you are describing</p>
<p>you could also use a table</p>
<p>unless by aligned right AND left you mean justified...</p>
http://stackoverflow.com/questions/391759/xsl-fo-inline-alignment/586408#5864080Answer by Hilton Campbell for XSL FO inline alignmentHilton Campbell2009-02-25T15:17:34Z2009-02-25T15:17:34Z<p>This will do the trick:</p>
<pre><code><fo:table>
<fo:table-column />
<fo:table-column />
<fo:table-body>
<fo:table-row>
<fo:table-cell>
<fo:block>LEFT TEXT</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block text-align="right">RIGHT TEXT</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</code></pre>
http://stackoverflow.com/questions/391759/xsl-fo-inline-alignment/590335#5903352Answer by Hilton Campbell for XSL FO inline alignmentHilton Campbell2009-02-26T12:21:05Z2009-02-26T12:21:05Z<p>Elegance wasn't a stated requirement, but this should fit the bill:</p>
<pre><code><fo:block text-align-last="justify">
LEFT TEXT
<fo:leader leader-pattern="space" />
RIGHT TEXT
</fo:block>
</code></pre>
<p>This works by justifying the last line of text in the block, so that the text begins at the left of the line and ends at the right. The leader, which is usually used on Table of Contents pages, stretches to fill the space between the left and right text. Normally it is used as <code><fo:leader leader-pattern="dots" /></code>, which produces a stretch of periods, but in this case it merely provides a gulf of space.</p>