codecamp

XSL-FO bidi-override 对象

XSL-FO bidi-override 对象

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

本节介绍的是 XSL-FO 中的 bidi-override 对象,你将了解该对象的定义、语法以及属性。


定义和用法

<fo:bidi-override> 对象用于为混合语言文档中的不同脚本重写默认 Unicode BIDI 的方向。

该对象会强制在一个特定的方向写入字符串。


语法

<fo:bidi-override>
<!--
Contents:(#PCDATA|bidi-override|
character|external-graphic|
instream-foreign-object|inline|
inline-container|leader|page-number|
page-number-citation|basic-link|
multi-toggle|block|block-container|
table-and-caption|table|list-block)*
-->
</fo:bidi-override>

属性

属性 [A-P] 属性 [Q-Z]
azimuth relative-position
bottom richness
color right
cue-after score-spaces
cue-before speak
direction speak-header
elevation speak-numeral
font-family speak-punctuation
font-selection-strategy speech-rate
font-size stress
font-size-adjust top
font-stretch unicode-bidi
font-style voice-family
font-variant volume
font-weight word-spacing
id  
left  
letter-spacing  
line-height  
pause-after  
pause-before  
pitch  
pitch-range  
play-during  


XSL-FO 参考手册 XSL-FO 参考手册
XSL-FO basic-link 对象
XSL-FO block 对象
温馨提示
下载编程狮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; }