~qbalazs/installation-guide/lp1030336

« back to all changes in this revision

Viewing changes to build/stylesheets/db2latex/slides/slidesinfo.mod.xsl

  • Committer: joeyh
  • Date: 2005-10-07 19:51:38 UTC
  • Revision ID: vcs-imports@canonical.com-20051007195138-c3d57b2617a79a4f
move manual to top-level directory, split out of debian-installer package

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version='1.0'?>
 
2
<!--############################################################################# 
 
3
|       $Id: slidesinfo.mod.xsl,v 1.2 2003/07/22 07:12:13 rcasellas Exp $
 
4
|- #############################################################################
 
5
|       $Author: rcasellas $
 
6
|                                                                                                               
 
7
|   PURPOSE:
 
8
+ ############################################################################## -->
 
9
 
 
10
<xsl:stylesheet 
 
11
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 
12
    xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
 
13
    exclude-result-prefixes="doc" version='1.0'>
 
14
 
 
15
 
 
16
 
 
17
<xsl:template match="slidesinfo">
 
18
<xsl:text>%--------------------------------------------------SLIDES INFORMATION&#10;</xsl:text>
 
19
<xsl:text>\title{{\black </xsl:text>
 
20
<xsl:apply-templates select="title"/>
 
21
<xsl:text>}}&#10;</xsl:text>
 
22
<xsl:text>\subtitle{{\black </xsl:text>
 
23
<xsl:apply-templates select="titleabbrev"/>
 
24
<xsl:text>}}&#10;</xsl:text>
 
25
<xsl:text>\author{{\black </xsl:text>
 
26
<xsl:apply-templates select="author|authorgroup"/>
 
27
<xsl:text>}}&#10;</xsl:text>
 
28
<xsl:text>
 
29
</xsl:text>
 
30
<xsl:text>\renewcommand{\slideparindent}{0mm}&#10;</xsl:text>
 
31
</xsl:template>
 
32
 
 
33
 
 
34
 
 
35
 
 
36
<xsl:template match="slidesinfo/title|slidesinfo/titleabbrev">
 
37
<xsl:apply-templates/>
 
38
</xsl:template>
 
39
 
 
40
 
 
41
<xsl:template match="slidesinfo/authorgroup">
 
42
<xsl:apply-imports/>
 
43
</xsl:template>
 
44
 
 
45
<xsl:template match="slidesinfo/author|slidesinfo/authorgroup/author">
 
46
<xsl:apply-imports/>
 
47
</xsl:template>
 
48
 
 
49
<xsl:template match="slidesinfo/releaseinfo">
 
50
<xsl:apply-templates/>
 
51
</xsl:template>
 
52
 
 
53
<xsl:template match="slidesinfo/date">
 
54
<xsl:apply-templates/>
 
55
</xsl:template>
 
56
 
 
57
<xsl:template match="slidesinfo/copyright">
 
58
</xsl:template>
 
59
 
 
60
 
 
61
</xsl:stylesheet>