codecamp

XSL-FO footnote-body 对象

XSL-FO footnote-body 对象

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

定义和用法

<fo:footnote-body> 对象定义脚注的内容。


语法

<fo:footnote-body>
<!--
Contents:(block|block-container|
table-and-caption|table|
list-block)+
-->
</fo:footnote-body> 

属性

属性
role
source-document


XSL-FO 参考手册 XSL-FO 参考手册
XSL-FO footnote 对象
XSL-FO initial-property-set 对象
温馨提示
下载编程狮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; }