2013-10-03 53 views
-2

我想在標題中插入圖像。請讓我知道知道插入那個圖像?我的模板看起來像這樣 請讓我知道如何做到這一點 我的形象的名字是abc.jpg的使用XSL模板在標題中創建圖像

<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> 

回答

0

靜態內容塊內,可以添加包含圖像的塊:

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

您必須添加另一個塊容器,您將在其中放置頁腳文本。