math.xsl 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. <?xml version="1.0" encoding="ASCII"?>
  2. <!--This file was created automatically by html2xhtml-->
  3. <!--from the HTML stylesheets.-->
  4. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns="http://www.w3.org/1999/xhtml" exclude-result-prefixes="mml" version="1.0">
  5. <!-- ********************************************************************
  6. $Id: math.xsl 9297 2012-04-22 03:56:16Z bobstayton $
  7. ********************************************************************
  8. This file is part of the XSL DocBook Stylesheet distribution.
  9. See ../README or http://docbook.sf.net/release/xsl/current/ for
  10. copyright and other information.
  11. ******************************************************************** -->
  12. <xsl:template match="inlineequation">
  13. <xsl:apply-templates/>
  14. </xsl:template>
  15. <xsl:template match="alt">
  16. </xsl:template>
  17. <xsl:template match="mathphrase">
  18. <span>
  19. <xsl:apply-templates select="." mode="common.html.attributes"/>
  20. <xsl:call-template name="id.attribute"/>
  21. <xsl:apply-templates/>
  22. </span>
  23. </xsl:template>
  24. <!-- "Support" for MathML -->
  25. <xsl:template match="mml:*">
  26. <xsl:copy>
  27. <xsl:copy-of select="@*"/>
  28. <xsl:apply-templates/>
  29. </xsl:copy>
  30. </xsl:template>
  31. <!-- Support for TeX math in alt -->
  32. <xsl:template match="*" mode="collect.tex.math">
  33. <xsl:call-template name="write.text.chunk">
  34. <xsl:with-param name="filename" select="$tex.math.file"/>
  35. <xsl:with-param name="method" select="'text'"/>
  36. <xsl:with-param name="content">
  37. <xsl:choose>
  38. <xsl:when test="$tex.math.in.alt = 'plain'">
  39. <xsl:call-template name="tex.math.plain.head"/>
  40. <xsl:apply-templates select="." mode="collect.tex.math.plain"/>
  41. <xsl:call-template name="tex.math.plain.tail"/>
  42. </xsl:when>
  43. <xsl:when test="$tex.math.in.alt = 'latex'">
  44. <xsl:call-template name="tex.math.latex.head"/>
  45. <xsl:apply-templates select="." mode="collect.tex.math.latex"/>
  46. <xsl:call-template name="tex.math.latex.tail"/>
  47. </xsl:when>
  48. <xsl:otherwise>
  49. <xsl:message>
  50. Unsupported TeX math notation:
  51. <xsl:value-of select="$tex.math.in.alt"/>
  52. </xsl:message>
  53. </xsl:otherwise>
  54. </xsl:choose>
  55. </xsl:with-param>
  56. <xsl:with-param name="encoding" select="$chunker.output.encoding"/>
  57. </xsl:call-template>
  58. </xsl:template>
  59. <!-- PlainTeX -->
  60. <xsl:template name="tex.math.plain.head">
  61. <xsl:text>\nopagenumbers
  62. </xsl:text>
  63. </xsl:template>
  64. <xsl:template name="tex.math.plain.tail">
  65. <xsl:text>\bye
  66. </xsl:text>
  67. </xsl:template>
  68. <xsl:template match="inlineequation" mode="collect.tex.math.plain">
  69. <xsl:variable name="filename">
  70. <xsl:choose>
  71. <xsl:when test="graphic">
  72. <xsl:call-template name="mediaobject.filename">
  73. <xsl:with-param name="object" select="graphic"/>
  74. </xsl:call-template>
  75. </xsl:when>
  76. <xsl:otherwise>
  77. <xsl:call-template name="select.mediaobject.filename">
  78. <xsl:with-param name="olist" select="inlinemediaobject/*"/>
  79. </xsl:call-template>
  80. </xsl:otherwise>
  81. </xsl:choose>
  82. </xsl:variable>
  83. <xsl:variable name="output.delims">
  84. <xsl:call-template name="tex.math.output.delims"/>
  85. </xsl:variable>
  86. <xsl:variable name="tex" select="alt[@role='tex'] | inlinemediaobject/textobject[@role='tex']"/>
  87. <xsl:if test="$tex">
  88. <xsl:text>\special{dvi2bitmap outputfile </xsl:text>
  89. <xsl:value-of select="$filename"/>
  90. <xsl:text>}
  91. </xsl:text>
  92. <xsl:if test="$output.delims != 0">
  93. <xsl:text>$</xsl:text>
  94. </xsl:if>
  95. <xsl:value-of select="$tex"/>
  96. <xsl:if test="$output.delims != 0">
  97. <xsl:text>$
  98. </xsl:text>
  99. </xsl:if>
  100. <xsl:text>\vfill\eject
  101. </xsl:text>
  102. </xsl:if>
  103. </xsl:template>
  104. <xsl:template match="equation|informalequation" mode="collect.tex.math.plain">
  105. <xsl:variable name="filename">
  106. <xsl:choose>
  107. <xsl:when test="graphic">
  108. <xsl:call-template name="mediaobject.filename">
  109. <xsl:with-param name="object" select="graphic"/>
  110. </xsl:call-template>
  111. </xsl:when>
  112. <xsl:otherwise>
  113. <xsl:call-template name="select.mediaobject.filename">
  114. <xsl:with-param name="olist" select="mediaobject/*"/>
  115. </xsl:call-template>
  116. </xsl:otherwise>
  117. </xsl:choose>
  118. </xsl:variable>
  119. <xsl:variable name="output.delims">
  120. <xsl:call-template name="tex.math.output.delims"/>
  121. </xsl:variable>
  122. <xsl:variable name="tex" select="alt[@role='tex'] | mediaobject/textobject[@role='tex']"/>
  123. <xsl:if test="$tex">
  124. <xsl:text>\special{dvi2bitmap outputfile </xsl:text>
  125. <xsl:value-of select="$filename"/>
  126. <xsl:text>}
  127. </xsl:text>
  128. <xsl:if test="$output.delims != 0">
  129. <xsl:text>$$</xsl:text>
  130. </xsl:if>
  131. <xsl:value-of select="$tex"/>
  132. <xsl:if test="$output.delims != 0">
  133. <xsl:text>$$
  134. </xsl:text>
  135. </xsl:if>
  136. <xsl:text>\vfill\eject
  137. </xsl:text>
  138. </xsl:if>
  139. </xsl:template>
  140. <xsl:template match="text()" mode="collect.tex.math.plain"/>
  141. <!-- LaTeX -->
  142. <xsl:template name="tex.math.latex.head">
  143. <xsl:text>\documentclass{article}
  144. </xsl:text>
  145. <xsl:text>\pagestyle{empty}
  146. </xsl:text>
  147. <xsl:text>\begin{document}
  148. </xsl:text>
  149. </xsl:template>
  150. <xsl:template name="tex.math.latex.tail">
  151. <xsl:text>\end{document}
  152. </xsl:text>
  153. </xsl:template>
  154. <xsl:template match="inlineequation" mode="collect.tex.math.latex">
  155. <xsl:variable name="filename">
  156. <xsl:choose>
  157. <xsl:when test="graphic">
  158. <xsl:call-template name="mediaobject.filename">
  159. <xsl:with-param name="object" select="graphic"/>
  160. </xsl:call-template>
  161. </xsl:when>
  162. <xsl:otherwise>
  163. <xsl:call-template name="select.mediaobject.filename">
  164. <xsl:with-param name="olist" select="inlinemediaobject/*"/>
  165. </xsl:call-template>
  166. </xsl:otherwise>
  167. </xsl:choose>
  168. </xsl:variable>
  169. <xsl:variable name="output.delims">
  170. <xsl:call-template name="tex.math.output.delims"/>
  171. </xsl:variable>
  172. <xsl:variable name="tex" select="alt[@role='tex'] | inlinemediaobject/textobject[@role='tex']"/>
  173. <xsl:if test="$tex">
  174. <xsl:text>\special{dvi2bitmap outputfile </xsl:text>
  175. <xsl:value-of select="$filename"/>
  176. <xsl:text>}
  177. </xsl:text>
  178. <xsl:if test="$output.delims != 0">
  179. <xsl:text>$</xsl:text>
  180. </xsl:if>
  181. <xsl:value-of select="$tex"/>
  182. <xsl:if test="$output.delims != 0">
  183. <xsl:text>$
  184. </xsl:text>
  185. </xsl:if>
  186. <xsl:text>\newpage
  187. </xsl:text>
  188. </xsl:if>
  189. </xsl:template>
  190. <xsl:template match="equation|informalequation" mode="collect.tex.math.latex">
  191. <xsl:variable name="filename">
  192. <xsl:choose>
  193. <xsl:when test="graphic">
  194. <xsl:call-template name="mediaobject.filename">
  195. <xsl:with-param name="object" select="graphic"/>
  196. </xsl:call-template>
  197. </xsl:when>
  198. <xsl:otherwise>
  199. <xsl:call-template name="select.mediaobject.filename">
  200. <xsl:with-param name="olist" select="mediaobject/*"/>
  201. </xsl:call-template>
  202. </xsl:otherwise>
  203. </xsl:choose>
  204. </xsl:variable>
  205. <xsl:variable name="output.delims">
  206. <xsl:call-template name="tex.math.output.delims"/>
  207. </xsl:variable>
  208. <xsl:variable name="tex" select="alt[@role='tex'] | mediaobject/textobject[@role='tex']"/>
  209. <xsl:if test="$tex">
  210. <xsl:text>\special{dvi2bitmap outputfile </xsl:text>
  211. <xsl:value-of select="$filename"/>
  212. <xsl:text>}
  213. </xsl:text>
  214. <xsl:if test="$output.delims != 0">
  215. <xsl:text>$$</xsl:text>
  216. </xsl:if>
  217. <xsl:value-of select="$tex"/>
  218. <xsl:if test="$output.delims != 0">
  219. <xsl:text>$$
  220. </xsl:text>
  221. </xsl:if>
  222. <xsl:text>\newpage
  223. </xsl:text>
  224. </xsl:if>
  225. </xsl:template>
  226. <xsl:template match="text()" mode="collect.tex.math.latex"/>
  227. <!-- Extracting image filename from mediaobject and graphic elements -->
  228. <xsl:template name="select.mediaobject.filename">
  229. <xsl:param name="olist" select="imageobject|imageobjectco |videoobject|audioobject|textobject"/>
  230. <xsl:variable name="mediaobject.index">
  231. <xsl:call-template name="select.mediaobject.index">
  232. <xsl:with-param name="olist" select="$olist"/>
  233. <xsl:with-param name="count" select="1"/>
  234. </xsl:call-template>
  235. </xsl:variable>
  236. <xsl:if test="$mediaobject.index != ''">
  237. <xsl:call-template name="mediaobject.filename">
  238. <xsl:with-param name="object" select="$olist[position() = $mediaobject.index]"/>
  239. </xsl:call-template>
  240. </xsl:if>
  241. </xsl:template>
  242. <xsl:template name="tex.math.output.delims">
  243. <xsl:variable name="pi.delims">
  244. <xsl:call-template name="pi.dbtex_delims">
  245. <xsl:with-param name="node" select="descendant-or-self::*"/>
  246. </xsl:call-template>
  247. </xsl:variable>
  248. <xsl:variable name="result">
  249. <xsl:choose>
  250. <xsl:when test="$pi.delims = 'no'">0</xsl:when>
  251. <xsl:when test="$pi.delims = '' and $tex.math.delims = 0">0</xsl:when>
  252. <xsl:otherwise>1</xsl:otherwise>
  253. </xsl:choose>
  254. </xsl:variable>
  255. <xsl:value-of select="$result"/>
  256. </xsl:template>
  257. </xsl:stylesheet>