我想为小表尝试两列布局。我复制了现有的simple-page-master并添加了column-count="2"
。 (为简洁起见,我不包括页眉或页脚。)如果删除fo:page-sequence
和fo:flow
,模板将按预期工作,否则我的输出中没有任何内容。我尝试用另一个模板替换numIndex,但也失败了。
我正在使用Antenna House。一如既往,我感谢任何建议。
<fo:simple-page-master master-name="body-page-two-col" xsl:use-attribute-sets="odd-page-atts">
<fo:region-body region-name="region-body" xsl:use-attribute-sets="body-atts" column-count="2"/>
</fo:simple-page-master>
<xsl:attribute-set name="odd-page-atts">
<xsl:attribute name="page-height">11in</xsl:attribute>
<xsl:attribute name="page-width">8.5in</xsl:attribute>
<xsl:attribute name="margin-top">1.5pc</xsl:attribute>
<xsl:attribute name="margin-bottom">1.5pc</xsl:attribute>
<xsl:attribute name="margin-left">1in</xsl:attribute>
<xsl:attribute name="margin-right">.5in</xsl:attribute>
</xsl:attribute-set>
<xsl:attribute-set name="body-atts">
<xsl:attribute name="margin-top">4.5pc</xsl:attribute>
<xsl:attribute name="margin-bottom">4.5pc</xsl:attribute>
</xsl:attribute-set>
<xsl:template name="numIndex">
<fo:page-sequence master-reference="body-page-two-col" initial-page-number="auto" format="1">
<fo:flow flow-name="region-body">
<fo:block>
<fo:table-and-caption>
<fo:table-caption>
<fo:block>
<xsl:text>Numerical Index</xsl:text>
</fo:block>
</fo:table-caption>
<fo:table>
<xsl:attribute name="id"><xsl:apply-templates select="ancestor::dmodule/identAndStatusSection/dmAddress/dmIdent/dmCode"/><xsl:text>tbl-numidx001</xsl:text></xsl:attribute>
<fo:table-header>
<fo:table-row>
<fo:table-cell>
<fo:block font-size="11pt" font-style="italic" >
<fo:retrieve-table-marker retrieve-class-name="continued-ni" retrieve-boundary-within-table="table"/>
</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-header>
<fo:table-body>
<fo:table-row>
<fo:table-cell>
<fo:marker marker-class-name="continued-ni"/>
<fo:marker marker-class-name="continued-ni">
<fo:block text-align="center">Numerical Index  (Continued)
</fo:block>
</fo:marker>
</fo:table-cell>
</fo:table-row>
<fo:table-row>
<fo:table-cell>
<fo:table border-bottom="solid" border-bottom-width=".5pt"
border-top="solid" border-top-width=".5pt" font-size="8pt"
margin-bottom="8pt" margin-left="3pt" margin-right="3pt" margin-top="8pt"
relative-position="static" space-after.maximum="12pt" space-after.minimum="12pt"
space-after.optimum="12pt" space-before.maximum="14pt" space-before.minimum="12pt"
space-before.optimum="12pt" span="all" table-layout="fixed" table-omit-header-at-break="false"
table-omit-footer-at-break="true" text-align="start" white-space-treatment="preserve"
width="3.0in" hyphenate="true" cols="4">
<fo:table-column column-number="1" column-width="30%"/>
<fo:table-column column-number="2" column-width="20%"/>
<fo:table-column column-number="3" column-width="20%"/>
<fo:table-column column-number="4" column-width="20%"/>
<fo:table-header>
<xsl:call-template name="NI-HEADER"/>
</fo:table-header>
<fo:table-body>
<xsl:call-template name="SortParts"/>
</fo:table-body>
</fo:table>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:table-and-caption>
</fo:flow>
</fo:block>
</fo:page-sequence>
</xsl:template>
这就是调用numIndex:
<xsl:template match="illustratedPartsCatalog">
<xsl:apply-templates />
<xsl:call-template name="numIndex"/>
</xsl:template>
答案 0 :(得分:1)
如果我理解正确,您需要一个在常规单列流中流入两列的表。由于您正在使用AH Formatter,因此您可以使用两列fo:block-container
来仅包含该表。见https://www.antennahouse.com/product/ahf64/ahf-ext.html#axf.column-count。然而,这不会让你得到你的&#39;(续)&#39;标记。为此,您可以将fo:block-container
作为fo:table-cell
的子项从外fo:table
开始。
但是,由于我完全不确定我是否理解您的要求,您能否对您所寻找的内容进行简单的图示说明?
此外,如果您在代码示例中显示fo:simple-page-master
超出任何xsl:template
,则XSLT处理器将忽略它,并且不会出现在您的FO文件中。
根据https://www.w3.org/TR/xslt#stylesheet-element:
XSLT处理器总是可以自由地忽略这些顶级元素,如果它不能识别名称空间URI,则必须忽略顶级元素而不会出错。
答案 1 :(得分:0)
我可以看到2个问题:
您已为fo:table指定了width="7.0in"
,因此它不适合列入比此更窄的列。你的专栏只有3.5&#34;减去列之间的列间距(如果你没有另外指定则为12pt)。该表将流向第一个可以容纳它们的主体页面。
template match="illustratedPartsCatalog"
首先执行apply-templates。如果它生成了一个页面序列并且没有关闭它,那么call-template name="numIndex"
将尝试创建一个嵌套的页面序列并且不会起作用。
FO模板以</fo:layout-master-set>
开头。
然后有两种方法可以继续:您可以使用template match="node"
匹配XML中根节点的每个子节点,也可以使用xsl:call-template
命令。这为您提供了更大的灵活性,您可以构建一个模板,生成一个页面序列,其中包含多个根节点的子节点。
所以你可以这样做:
<xsl:call-template name="insertIllustratedPartsCatalog"/>
<xsl:call-template name="numIndex"/>
其中insertIllustratedPartsCatalog
为零件目录创建页面序列,numIndex
为索引创建页面序列。
(如果没有看到整个FO模板,很难获得更具体的信息)。