summaryrefslogtreecommitdiff
path: root/docs/docbook/xslt/db2latex/part-chap-app.mod.xsl
blob: 38c15e9331bb07ee12c91e9f2a22ecef611d4032 (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?xml version='1.0'?>
<!--############################################################################# 
|- #############################################################################
|														
|   PURPOSE: Part
+ ############################################################################## -->

<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="part-chap-app" xmlns="">
	<referenceinfo>
	    <releaseinfo role="meta">
	    </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>Parts, Chapters and Appendixes <filename>part-chap-app.mod.xsl</filename></title>
	<partintro>
	    <section><title>Introduction</title>
		<para></para>
	    </section>
	</partintro>
    </doc:reference>
    <!--############################################################################# -->




    <xsl:template match="part">
	<xsl:call-template name="map.begin"/>
	<xsl:apply-templates/>
    </xsl:template>

    <xsl:template match="part/docinfo"/>
    <xsl:template match="part/title"/>
    <xsl:template match="part/subtitle"/>
    <xsl:template match="partintro"/>
    <xsl:template match="partintro/title"/>
    <xsl:template match="partintro/subtitle"/>
    <xsl:template match="partintro/titleabbrev"/>


    <!--############################################################################# 
    |- #############################################################################
    |														
    |   PURPOSE: Chapter
    + ############################################################################## -->


    <!--############################################################################# -->
    <!-- DOCUMENTATION                                                                -->
    <doc:template match="chapter" xmlns="">
	<refpurpose> XSL template for Chapters.</refpurpose>
	<refdescription>
	    <para> This is the main entry point for a <sgmltag class="start">chapter</sgmltag> subtree.
		This template processes any chapter. Outputs <literal>\chapter{title}</literal>, calls 
		templates and apply-templates. Since chapters only apply in books, 
		some assumptions could be done in order to optimize the stylesheet behaviour.</para>

	    <formalpara><title>Remarks and Bugs</title>
		<itemizedlist>
		    <listitem><para> 
			EMPTY templates: chapter/title, 
			chapter/titleabbrev, 
			chapter/subtitle, 
			chapter/docinfo|chapterinfo.</para></listitem>
		</itemizedlist>
	    </formalpara>

	    <formalpara><title>Affected by</title> map. 
	    </formalpara>
	</refdescription>
    </doc:template>
    <!--############################################################################# -->

    <xsl:template match="chapter">
	<xsl:call-template name="map.begin"/>
	<xsl:apply-templates/>
	<xsl:call-template name="map.end"/>
    </xsl:template>

    <xsl:template match="chapter/title"/>
    <xsl:template match="chapter/titleabbrev"/>
    <xsl:template match="chapter/subtitle"/>
    <xsl:template match="chapter/docinfo|chapterinfo"/>


    <!--############################################################################# 
    |- #############################################################################
    |														
    |   PURPOSE:
    + ############################################################################## -->

    <xsl:template match="appendix">
	<xsl:if test="not (preceding-sibling::appendix)">
	    <xsl:text>&#10;</xsl:text>
	    <xsl:choose>
		<xsl:when test="local-name(..)='book' or local-name(..)='part'">
		    <xsl:text>\newcommand{\dbappendix}[1]{\chapter{#1}}%&#10;</xsl:text>
		</xsl:when>
		<xsl:otherwise>
		    <xsl:text>\newcommand{\dbappendix}[1]{\section{#1}}%&#10;</xsl:text>
		</xsl:otherwise>
	    </xsl:choose>
	    <xsl:call-template name="map.begin">
		<xsl:with-param name="keyword">appendixes</xsl:with-param>
	    </xsl:call-template>
	</xsl:if>
	<xsl:call-template name="map.begin"/>
	<xsl:apply-templates/>
	<xsl:call-template name="map.end"/>
    </xsl:template>


    <xsl:template match="appendix/title"/>
    <xsl:template match="appendix/titleabbrev"/>
    <xsl:template match="appendix/subtitle"/>
    <xsl:template match="appendix/docinfo|appendixinfo"/>
</xsl:stylesheet>