spec-common.xsl 863 B

12345678910111213141516171819202122232425
  1. <?xml version='1.0'?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3. <!-- elements of customization for Xiph.org specs
  4. common to all docbook output formats
  5. this file is included by the format-specific stylesheets
  6. $Id$
  7. -->
  8. <xsl:param name="use.svg" select="'0'"/>
  9. <xsl:param name="section.autolabel" select="'1'"/>
  10. <xsl:param name="section.label.includes.component.label" select="'1'"/>
  11. <xsl:param name="appendix.autolabel" select="'1'"/>
  12. <!-- we have latex versions of the equations inline -->
  13. <xsl:param name="tex.math.in.alt" select="'latex'"/>
  14. <xsl:param name="tex.math.delims" select="'0'"/>
  15. <!-- we're using xinclude instead to the extent that xsltproc doesn't support this -->
  16. <xsl:param name="textinclude.extension" select="'1'"/>
  17. <!-- end common elements -->
  18. </xsl:stylesheet>