我有一些 XML:
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="./example.xsl"?>
<article>
<title>Some title</title>
<author>Some Author</author>
</article>
和 XSL:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/2001/XMLSchema-instance">
<xsl:output method="html" />
<xsl:template match="/">
<h1>
<xsl:value-of select="//title"/>
</h1>
<h2>
<xsl:value-of select="//author"/>
</h2>
</xsl:template>
</xsl:stylesheet>
但是我需要从此 XML 生成 PDF,因此我应该使用princexml
,当我运行 prince ./examples/example.xml
生成包含以下内容的 pdf 时:
为什么样式不适用于里面的 xml princexml
?