[EMAIL PROTECTED] wrote:
Hi everybody,
Is there any way to have page border for the document ? How to implement it in multiple pages?
Can you elaborate a little? Do you mean just some space between paper edge and flowing text or do you mean thin lines around the edge of the page?
If yes, How to implement it in multiple pages?
<fo:page-sequence-master> and <fo:repeatable-page-master-reference> will help you achieve what you want. If you just have a single simple page master that you want used for infinite possible pages then:
<fo:layout-master-set> <fo:simple-page-master name="a4"> ... <fo:simple-page-master>
<fo:page-sequence-master> <fo:repeatable-page-master-reference master-reference="a4"/> </fo:page-sequence-master>
</fo:layout-master-set>
If you want different borders/regions on different pages then that too is possible, please elaborate your requirements.
Chris
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]