math.xsl 8.8 KB

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