如何用空行填充页面或获取从节点到页面底部的距离?
how to fill page with empty rows or get the distance from the node to the bottom of the page?
数据量不确定,每条数据的高度也是uncertain.When还剩下一页,我想让剩下的页用表格填满well.How做用xsl-fo吗?请
<xsl:stylesheet version="1.1"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:java="http://xml.apache.org/xalan/java"
xmlns:jfn="http://xml.apache.org/xalan/java/cn.net.jully.common.util.JullyXslUtil"
exclude-result-prefixes="fo java jfn">
<xsl:output method="xml" version="1.0" omit-xml-declaration="no" indent="yes" />`enter code here`
<xsl:include href="../include/common.xsl" />
使用 transparent
作为 table 的边框颜色。
在 region-before 的 fo:static-content
中,制作一个大小正确且位置正确的空白 table 以显示 [=25] =] 用于数据。
这假定 table 列宽度是固定的。如果您使用自动 table 布局,那么格式化程序将计算出列的宽度,您将不知道在背景中使用什么宽度 table.
数据量不确定,每条数据的高度也是uncertain.When还剩下一页,我想让剩下的页用表格填满well.How做用xsl-fo吗?请
<xsl:stylesheet version="1.1"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:java="http://xml.apache.org/xalan/java"
xmlns:jfn="http://xml.apache.org/xalan/java/cn.net.jully.common.util.JullyXslUtil"
exclude-result-prefixes="fo java jfn">
<xsl:output method="xml" version="1.0" omit-xml-declaration="no" indent="yes" />`enter code here`
<xsl:include href="../include/common.xsl" />
使用
transparent
作为 table 的边框颜色。在 region-before 的
fo:static-content
中,制作一个大小正确且位置正确的空白 table 以显示 [=25] =] 用于数据。
这假定 table 列宽度是固定的。如果您使用自动 table 布局,那么格式化程序将计算出列的宽度,您将不知道在背景中使用什么宽度 table.