使用XSL模板在标头中创建图像

时间:2013-10-03 06:43:25

标签: xslt

我想在标题中插入图片。请让我知道插入该图片?我的模板看起来像这样  请让我知道如何做到这一点  我的图片名称是ABC.jpg

<xsl:template name="insertGlossaryEvenFooter">
<fo:static-content flow-name="even-glossary-footer">          
<fo:block xsl:use-attribute-sets="__glossary__even__footer">  
<xsl:call-template name="insert Variable">                  
<xsl:with-param name="theVariableID" select="'Glossary even footer'"/>                     <xsl:with-param name="the Parameters">          
<pagenum>                           
<fo:inline xsl:use-attribute-sets="__glossary__even__footer__pagenum">                                 <fo:page-number/>   
</fo:inline>                         
</pagenum>                     
</xsl:with-param>                 
</xsl:call-template>             
</fo:block>         
</fo:static-content>      </xsl:template>

1 个答案:

答案 0 :(得分:0)

在静态内容块中,您可以添加包含图像的块:

<fo:block-container position... top... left... width.. height> 
    <fo:external-graphic src="ABC.jpg">
</fo:block-container> 

您必须添加另一个块容器,您可以在其中放置页脚文本。