blob: 05c561d8b141c1955737205a1a3c5c6f518c9ce6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
<?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'>
<!-- ********************************************************************
$Id: footnote.xsl,v 1.1 2002/05/15 17:22:29 isberg Exp $
********************************************************************
This file is part of the XSL DocBook Stylesheet distribution.
See ../README or http://nwalsh.com/docbook/xsl/ for copyright
and other information.
******************************************************************** -->
<xsl:template match="footnote">
<fo:footnote>
<fo:inline>
<xsl:text>[</xsl:text>
<xsl:apply-templates select="." mode="footnote.number"/>
<xsl:text>]</xsl:text>
</fo:inline>
<fo:footnote-body font-size="{$footnote.font.size}">
<xsl:apply-templates/>
</fo:footnote-body>
</fo:footnote>
</xsl:template>
<xsl:template match="footnoteref">
<xsl:variable name="footnote" select="id(@linkend)"/>
<fo:inline>
<xsl:text>[</xsl:text>
<xsl:apply-templates select="$footnote" mode="footnote.number"/>
<xsl:text>]</xsl:text>
</fo:inline>
</xsl:template>
<xsl:template match="footnote" mode="footnote.number">
<xsl:number level="any" format="1"/>
</xsl:template>
<!-- ==================================================================== -->
<xsl:template match="footnote/para[1]
|footnote/simpara[1]
|footnote/formalpara[1]"
priority="2">
<!-- this only works if the first thing in a footnote is a para, -->
<!-- which is ok, because it usually is. -->
<fo:block>
<xsl:text>[</xsl:text>
<xsl:apply-templates select="ancestor::footnote" mode="footnote.number"/>
<xsl:text>] </xsl:text>
<xsl:apply-templates/>
</fo:block>
</xsl:template>
</xsl:stylesheet>
|