我正在使用XLST以具有标题的表格格式显示数据。
现在的问题是我正在使用Oracle工具来制作没有提供在输出页面布局中添加边框的文档的文档。
那么这个问题有什么解决方法吗?
我尝试了Antenna House的一些XSL FO代码片段,该片段具有Page Layout Master Set,但是我收到的响应为空白,我想工具将不支持此功能。
<fo:layout-master-set>
<fo:simple-page-master master-name="simple"
page-height="29.7cm"
page-width="21cm"
margin-top="0cm"
margin-bottom="0cm"
margin-left="2cm"
margin-right="2cm">
<fo:region-body margin-top="2cm" margin-bottom="2cm"/>
<fo:region-before extent="2cm" background-color="yellow"/>
<fo:region-after extent="2cm" background-color="red"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="simple">
<fo:flow flow-name="xsl-region-body">
<fo:block font-size="10mm">
'hello' in 'region-body'
</fo:block>
</fo:flow>
</fo:page-sequence>