-2

我想在标题中插入图像。请让我知道插入该图像?我的模板看起来像这样 请让我知道如何执行此操作 我的图像名称是 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>
4

1 回答 1

0

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

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

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

于 2013-10-03T14:11:43.990 回答