blob: 90d30f09cfcc5f1985d182f75ab8b37b72dc396e (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
<?xml version='1.0'?>
<!--#############################################################################
| $Id: preface.mod.xsl,v 1.1 2003/04/30 21:39:49 ab Exp $
|- #############################################################################
| $Author: ab $
|
| PURPOSE:
+ ############################################################################## -->
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
exclude-result-prefixes="doc" version='1.0'>
<!--############################################################################# -->
<!-- DOCUMENTATION -->
<doc:reference id="preface" xmlns="">
<referenceinfo>
<releaseinfo role="meta">
$Id: preface.mod.xsl,v 1.1 2003/04/30 21:39:49 ab Exp $
</releaseinfo>
<authorgroup>
<author> <firstname>Ramon</firstname> <surname>Casellas</surname> </author>
<author> <firstname>James</firstname> <surname>Devenish</surname> </author>
</authorgroup>
<copyright>
<year>2000</year> <year>2001</year> <year>2002</year> <year>2003</year>
<holder>Ramon Casellas</holder>
</copyright>
</referenceinfo>
<title>Preface <filename>preface.mod.xsl</filename></title>
<partintro>
<section><title>Introduction</title>
<para></para>
</section>
</partintro>
</doc:reference>
<!--#############################################################################
| Preface
+- ############################################################################# -->
<xsl:template match="preface">
<xsl:text>\newpage </xsl:text>
<xsl:text>% ------------------------------------------------------------- </xsl:text>
<xsl:text>% Preface </xsl:text>
<xsl:text>% ------------------------------------------------------------- </xsl:text>
<xsl:text>\chapter*{</xsl:text>
<!-- Output preface title or generic text -->
<xsl:choose>
<xsl:when test="title">
<xsl:apply-templates select="title"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="gentext">
<xsl:with-param name="key">preface</xsl:with-param>
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
<xsl:text>} </xsl:text>
<!-- done with title. Tag it. -->
<xsl:call-template name="label.id"/>
<!-- except title, titleabbrev and subtitle -->
<xsl:apply-templates select="*[name(.) != 'title' and name(.) != 'subtitle' and name(.) != 'titleabbrev']"/>
</xsl:template>
<!--#############################################################################
| Preface Title
+- ############################################################################# -->
<xsl:template match="preface/title">
<xsl:apply-templates/>
</xsl:template>
<!--#############################################################################
| Other Preface Elements
+- ############################################################################# -->
<xsl:template match="preface/titleabbrev"/>
<xsl:template match="preface/subtitle"/>
<xsl:template match="preface/docinfo|prefaceinfo"/>
<xsl:template match="preface/sect1|preface/simplesect">
<xsl:text> \section*{</xsl:text>
<xsl:apply-templates select="title"/>
<xsl:text>} </xsl:text>
<xsl:apply-templates select="*[name(.) != 'title']"/>
</xsl:template>
<xsl:template match="preface/sect1/sect2">
<xsl:text> \subsection*{</xsl:text>
<xsl:apply-templates select="title"/>
<xsl:text>} </xsl:text>
<xsl:apply-templates select="*[name(.) != 'title']"/>
</xsl:template>
<xsl:template match="preface/sect1/sect2/sect3">
<xsl:text> \subsubsection*{</xsl:text>
<xsl:apply-templates select="title"/>
<xsl:text>} </xsl:text>
<xsl:apply-templates select="*[name(.) != 'title']"/>
</xsl:template>
</xsl:stylesheet>
|