summaryrefslogtreecommitdiff
path: root/docs-xml/xslt/db2latex-xsl/xsl/slides/slidesinfo.mod.xsl
blob: 176f852793cddde5d9329b853f2efd663ef2e801 (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
<?xml version='1.0'?>
<!--############################################################################# 
|	$Id: slidesinfo.mod.xsl,v 1.2 2003/07/22 07:12:13 rcasellas Exp $
|- #############################################################################
|	$Author: rcasellas $
|														
|   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'>



<xsl:template match="slidesinfo">
<xsl:text>%--------------------------------------------------SLIDES INFORMATION&#10;</xsl:text>
<xsl:text>\title{{\black </xsl:text>
<xsl:apply-templates select="title"/>
<xsl:text>}}&#10;</xsl:text>
<xsl:text>\subtitle{{\black </xsl:text>
<xsl:apply-templates select="titleabbrev"/>
<xsl:text>}}&#10;</xsl:text>
<xsl:text>\author{{\black </xsl:text>
<xsl:apply-templates select="author|authorgroup"/>
<xsl:text>}}&#10;</xsl:text>
<xsl:text>
</xsl:text>
<xsl:text>\renewcommand{\slideparindent}{0mm}&#10;</xsl:text>
</xsl:template>




<xsl:template match="slidesinfo/title|slidesinfo/titleabbrev">
<xsl:apply-templates/>
</xsl:template>


<xsl:template match="slidesinfo/authorgroup">
<xsl:apply-imports/>
</xsl:template>

<xsl:template match="slidesinfo/author|slidesinfo/authorgroup/author">
<xsl:apply-imports/>
</xsl:template>

<xsl:template match="slidesinfo/releaseinfo">
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="slidesinfo/date">
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="slidesinfo/copyright">
</xsl:template>


</xsl:stylesheet>