XSL-FO 教程login
XSL-FO 教程
作者:php.cn  更新時間:2022-04-21 16:29:33

XSL-FO 文件



XSL-FO 文件

XSL-FO 文件是帶有輸出資訊的 XML 檔案。

XSL-FO 文件儲存在以 .fo 或 .fob 為檔案副檔名的檔案中。您也可以把 XSL-FO 文件儲存為以 .xml 為副檔名的文件,這樣做的話可以讓 XSL-FO 文件更容易被 XML 編輯器存取。


XSL-FO 文件結構

XSL-FO 的文檔結構如下:

<?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 文檔屬於XML 文檔,因此也需要以XML 宣告來起始:

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

<fo:root> 元素是XSL-FO 文件的根元素。這個根元素也要宣告XSL-FO 的命名空間:

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<!-- The full XSL-FO document goes here -->
</fo:root>

<fo:layout-master-set> 元素包含一個或多個頁面範本:

<fo:layout-master-set>
<!-- All page templates go here -->
</ fo:layout-master-set>

每個<fo:simple-page-master> 元素包含一個單一的頁面模板。每個模板必須有一個唯一的名稱(master-name):

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

一個或多個<fo:page-sequence> 元素可描述頁面內容。 master-reference 屬性使用相同的名稱來引用simple-page-master 模板:

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

註解:master-reference 的值"A4" 實際上並沒有描述某個預先定義的頁面格式。它僅僅是一個名稱。您可以使用任何名稱,例如 "MyPage"、"MyTemplate" 等等。


PHP中文網