XSL-FO root 对象
<fo:root> 对象是 XSL-FO 文档的根节点
<fo:root> <!--Children:layout-master-set,declarations?,page-sequence+--> </fo:root>
<fo:root> 对象的子类是一个单独的 <fo:layout-master-set>对象(该对象保留了在文档中使用的所有页面主 [master]),一个可选的 <fo:declarations> 对象,以及是一个或多个 <fo:page-sequence> 对象
注意:一个 XSL-FO 文档可以包含多个 <fo:page-sequences> 对象(举例:文档的每个章节都可以作为一个独立的 <fo:page-sequence> 对象 - 它允许使用 chapter-specific [具体的章节]内容,如:章节的标题,它可以被放置在页眉或页脚内)
属性
属性 |
---|
media-usage |
范例
<?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>