codecamp

XSL-FO footnote 对象

XSL-FO footnote 对象

XSL-FO 参考手册 XSL-FO 参考手册

定义和用法

<fo:footnote> 对象定义在页面的 region-body 内部的一个脚注。

如果 <fo:footnote> 是一个没有被分配到 region-body 的流的后代,这是一个错误。

如果 <fo:footnote> 是一个生成绝对定位区域的 fo:block-container 的后代,这也是一个错误。

<fo:footnote> 对象不能把 <fo:float>、<fo:footnote> 或 <fo:marker> 作为后代。


语法

<fo:footnote>
<!--
Contents:(inline|footnote-body)
-->
</fo:footnote> 

属性

属性
role
source-document


XSL-FO 参考手册 XSL-FO 参考手册
XSL-FO flow 对象
XSL-FO footnote-body 对象
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录
XSL-FO 参考手册

XSL-FO 对象列表

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }