Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フォームに XML があります
<root> <image> C:/images/image1.jpg </image> </root>
次に、XSL-FO でこのパス (C:/images/image1.jpg) を次のように使用する必要があります。
<fo:external-graphic src="C:/images/image1.jpg" />
XMLからのパスを使用してXSL-FOでそれを達成するにはどうすればよいですか??
<xsl:template match="image"> <fo:external-graphic src="{normalize-space()}" /> </xsl:template>