This is reference documentation for all user-configurable parameters in the DocBook XSL Slides stylesheets (for generating output from DocBook Slides documents).
This reference describes each of the parameters. These are the “easily customizable” parts of the stylesheet. If you want to specify an alternate value for one or more of these parameters, you can do so in a “driver” stylesheet.
For example, if you want to change the keyboard.nav
parameter to 0
, you might create a driver
stylesheet like this:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'> <xsl:import href="http://docbook.sourceforge.net/release/slides/current/xsl/slides.xsl"/> <xsl:param name="keyboard.nav" select="0"/> </xsl:stylesheet>
Naturally, you have to change the
href
attribute on
<xsl:import>
to point to the stylesheet
on your system.