-1

我正在尝试使用以下语法为我的 DocBook 设置部分和章节特定的标题:

<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
<book>
    <title>My Guide to Bowling</title>
    <chapter>
         <section header="section header">
            <title>Buying the right clothes</title>
            <para>I want to buy some shoes</para>
        </section>
    </chapter>
</book>

然后在我的 XSL 中,我正在做以下自定义来设置正确的标题:

<?xml version='1.0'?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">

<xsl:import href="/docbook-xsl-1.79.1/fo/docbook.xsl"/>

<xsl:template name="header.content">
        <xsl:param name="pageclass"/>
        <xsl:param name="position" select="''"/>
    <fo:block>
                <xsl:choose><xsl:when test="$pageclass = 'body'">
                        <xsl:choose><xsl:when test="$position = 'center'">
                                        <xsl:value-of select="ancestor-or-self::*[@header]/@header"/>
                        </xsl:when></xsl:choose>
                </xsl:when></xsl:choose>
    </fo:block>
</xsl:template>

</xsl:stylesheet>

这适用于章节,但不适用于章节。如何使其适用于当前页面中的部分?

4

1 回答 1

0

尝试这个

<xsl:value-of select="ancestor-or-self::*[@header][1]/@header"/>
于 2017-12-18T08:31:45.517 回答