math.xsl 1.1 KB

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <stylesheet xmlns="http://www.w3.org/1999/XSL/Transform" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:math="http://exslt.org/Math" version="1.0" extension-element-prefixes="math" math:doc="http://www.exslt.org/math">
  3. <import href="functions/min/math.min.xsl"/>
  4. <import href="functions/max/math.max.xsl"/>
  5. <import href="functions/highest/math.highest.xsl"/>
  6. <import href="functions/lowest/math.lowest.xsl"/>
  7. <import href="functions/abs/math.abs.xsl"/>
  8. <import href="functions/sqrt/math.sqrt.xsl"/>
  9. <import href="functions/power/math.power.xsl"/>
  10. <import href="functions/constant/math.constant.xsl"/>
  11. <import href="functions/log/math.log.xsl"/>
  12. <import href="functions/random/math.random.xsl"/>
  13. <import href="functions/sin/math.sin.xsl"/>
  14. <import href="functions/cos/math.cos.xsl"/>
  15. <import href="functions/tan/math.tan.xsl"/>
  16. <import href="functions/asin/math.asin.xsl"/>
  17. <import href="functions/acos/math.acos.xsl"/>
  18. <import href="functions/atan/math.atan.xsl"/>
  19. <import href="functions/atan2/math.atan2.xsl"/>
  20. <import href="functions/exp/math.exp.xsl"/>
  21. </stylesheet>