~ubuntu-branches/ubuntu/lucid/dblatex/lucid

« back to all changes in this revision

Viewing changes to xsl/pi.xsl

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Hoenen
  • Date: 2006-05-15 19:59:06 UTC
  • Revision ID: james.westby@ubuntu.com-20060515195906-jg9x08tsfbi35m2x
Tags: upstream-0.1.9
ImportĀ upstreamĀ versionĀ 0.1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version='1.0'?>
 
2
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
 
3
 
 
4
<!--############################################################################
 
5
    XSLT Stylesheet DocBook -> LaTeX 
 
6
    ############################################################################ -->
 
7
 
 
8
 
 
9
<xsl:template match="processing-instruction()"/>
 
10
 
 
11
<!-- raw latex text, e.g "<?latex \sloppy ?>" -->
 
12
 
 
13
<xsl:template match="processing-instruction('latex')">
 
14
  <xsl:value-of select="."/>
 
15
</xsl:template>
 
16
 
 
17
<xsl:template match="processing-instruction('db2latex')">
 
18
  <xsl:value-of select="."/>
 
19
</xsl:template>
 
20
 
 
21
</xsl:stylesheet>