Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

XSL-FO layout-master-set object


May 28, 2021 XSL-FO


Table of contents


XSL-FO layout-master-set object

XSL-FO layout-master-set object XSL-FO reference manual

Definitions and usages

The layout-master-set-set;object holds all the hosts used in the document.

Note: the parent class of the .

Note: The host name (master-name) of each sub-class of layout-fo:layout-master-set-gt; must be unique in the document.


Grammar

<fo:layout-master-set>
<!--
Contents:(simple-page-master|page-sequence-master)+
-->
</fo:layout-master-set> 

Property

No

Instance 1

The structure of the XSL-FO document is as follows:

<?xml version="1.0" encoding="ISO-8859-1"?>

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">

<fo:layout-master-set>
<fo:simple-page-master master-name="A4">
<!-- Page template goes here -->
</fo:simple-page-master>
</fo:layout-master-set>

<fo:page-sequence master-reference="A4">
<!-- Page content goes here -->
</fo:page-sequence>

</fo:root> 


XSL-FO layout-master-set object XSL-FO reference manual