Chapter 5. The custom stylesheet

Here's a listing of the simpler custom style sheet. Note that the system DocBook stylesheet is referred to by the URI given in the catalog files, and the common custom stylesheet is referred to directly.

<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" version="1.0">

<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/xhtml/docbook.xsl"/>
<xsl:import href="xhtml-common.xsl"/>

<xsl:output method="xml" encoding="ISO-8859-1" indent="yes"
	doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
	doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" />

</xsl:stylesheet>