0

ドキュメントの下部に、ウィンドウメーラーで使用できるように、下部にとどまる必要のあるアドレスがあります。これを実現するためにstatic-contentタグを使用しようとしましたが、ドキュメントが毎回エラーになります。私はこれに慣れていないので、何かが足りないと思います。「請負業者」テンプレートをフッターで静的にしたい。

 <xsl:template match="/" >
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<!-- Setup up page size (Can be in inches or centimeters)-->
  <fo:simple-page-master
    master-name="page"
    page-width="8.50in"
    page-height="11.00in"
    margin-top="0.50in"
    margin-bottom="0.50in"
    margin-left="0.50in"
    margin-right="0.50in">
    <fo:region-body margin-top="0cm"/>
    <fo:region-before extent="0cm"/>
    <fo:region-after extent="0cm"/>
  </fo:simple-page-master>
</fo:layout-master-set>

<xsl:apply-templates select="/Permits/Permit" />

</fo:root>
</xsl:template>

<xsl:template match="Permit">
<fo:page-sequence master-reference="page">
  <fo:flow flow-name="xsl-region-body">
    <fo:block font-size="10pt">
      <xsl:call-template name="header"/>
      <xsl:call-template name="permitdetails"/>
      <xsl:call-template name="permitdetails2"/>
      <xsl:call-template name="parties"/>
      <xsl:call-template name="feesummary"/>
      <xsl:call-template name="inspections"/>
      <xsl:call-template name="contractor"/>
    </fo:block>
  </fo:flow>
  </fo:page-sequence>
  </xsl:template>         
4

1 に答える 1

1

<fo:static-content>の子である必要があります。上記を静的コンテンツ タグで<fo:page-sequence>ラップしようとしているだけの場合は機能しません。<xsl:call-template name="contractor"/>テンプレートをエラーとともに投稿できますか?

このようなものが動作するはずです:

<xsl:template match="Permit">
  <fo:page-sequence master-reference="page">
    <fo:static-content flow-name="xsl-region-after">
      <fo:block>
        <xsl:call-template name="contractor"/>
      </fo:block>
    </fo:static-content>
      <fo:flow flow-name="xsl-region-body">
        <fo:block font-size="10pt">
          <xsl:call-template name="header"/>
          <xsl:call-template name="permitdetails"/>
          <xsl:call-template name="permitdetails2"/>
          <xsl:call-template name="parties"/>
          <xsl:call-template name="feesummary"/>
          <xsl:call-template name="inspections"/>
        </fo:block>
      </fo:flow>
    </fo:page-sequence>
  </xsl:template>
</xsl:template>

<fo:static-content>出力で本文の後に表示される場合でも、本文フローの前に宣言する必要があります。

于 2012-10-05T15:48:14.703 に答える