Aligning pure text to the right side of a document is easy in XSL-FO. However, aligning an entire table to the right side of the document is proving to be quite difficult.
What I wish to do is something like this:
fo:table align=left
{Table content}
/fo:table
And I am aware that there is an <fo:float>
object, but it does not seem to work in the way I want it to, or if it does, the explanation for how it works is poorly-worded in every instance I've been able to find.
In short: How can I make a table float to the left in XSL-FO?
EDIT: I've figured out why Float doesn't work. Apparently it's not supported in our version of Apache FOP. Any known alternatives?