texmath 0.6.1.4 → 0.6.1.5
raw patch · 4 files changed
+11/−11 lines, 4 files
Files
- Text/TeXMath/MathML.hs +2/−2
- Text/TeXMath/OMML.hs +6/−6
- tests/stackrel.omml +2/−2
- texmath.cabal +1/−1
Text/TeXMath/MathML.hs view
@@ -85,8 +85,8 @@ unode "mstyle" . unode "mfrac") , ("\\sqrt", unode "mroot") , ("\\stackrel", unode "mover" . reverse)- , ("\\overset", unode "mover")- , ("\\underset", unode "munder")+ , ("\\overset", unode "mover" . reverse)+ , ("\\underset", unode "munder" . reverse) , ("\\binom", showBinom) ]
Text/TeXMath/OMML.hs view
@@ -62,12 +62,12 @@ mnodeA "degHide" "on" () , mnode "deg" y' , mnode "e" x']- "\\stackrel" -> mnode "limUpp" [ mnode "e" x'- , mnode "lim" y']- "\\overset" -> mnode "limUpp" [ mnode "e" x'- , mnode "lim" y' ]- "\\underset" -> mnode "limLow" [ mnode "e" x'- , mnode "lim" y' ]+ "\\stackrel" -> mnode "limUpp" [ mnode "e" y'+ , mnode "lim" x']+ "\\overset" -> mnode "limUpp" [ mnode "e" y'+ , mnode "lim" x' ]+ "\\underset" -> mnode "limLow" [ mnode "e" y'+ , mnode "lim" x' ] "\\binom" -> mnode "d" [ mnode "dPr" $ mnodeA "sepChr" "," () , mnode "e" $
tests/stackrel.omml view
@@ -22,13 +22,13 @@ <m:e> <m:r> <m:rPr />- <m:t>w</m:t>+ <m:t>→</m:t> </m:r> </m:e> <m:lim> <m:r> <m:rPr />- <m:t>→</m:t>+ <m:t>w</m:t> </m:r> </m:lim> </m:limUpp>
texmath.cabal view
@@ -1,5 +1,5 @@ Name: texmath-Version: 0.6.1.4+Version: 0.6.1.5 Cabal-Version: >= 1.6 Build-type: Custom Synopsis: Conversion of LaTeX math formulas to MathML or OMML.