texvc +\bcancel and \xcancel to make full use of the cancel package
authorConrad Irwin <conrad@users.mediawiki.org>
Thu, 1 Jul 2010 19:11:22 +0000 (19:11 +0000)
committerConrad Irwin <conrad@users.mediawiki.org>
Thu, 1 Jul 2010 19:11:22 +0000 (19:11 +0000)
RELEASE-NOTES
math/texutil.ml

index 4e8d5ab..198ad31 100644 (file)
@@ -97,6 +97,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 8507) Group file links by namespace:title on image pages
 * Stop emitting named entities, so we can use <!DOCTYPE html> while still being
   well-formed XML
+* texvc now supports \bcancel and \xcancel in addition to \cancel and \cancelto
 
 === Bug fixes in 1.17 ===
 * (bug 17560) Half-broken deletion moved image files to deletion archive
index bd348f9..7800c65 100644 (file)
@@ -512,6 +512,8 @@ let find = function
     | "\\over"             -> FUN_INFIXh ("\\over ", fun num den -> Html.html_render num, "<hr style=\"{background: black}\"/>", Html.html_render den)
     | "\\sqrt"             -> FUN_AR1 "\\sqrt "
     | "\\cancel"           -> FUN_AR1 "\\cancel "
+    | "\\bcancel"           -> FUN_AR1 "\\bcancel "
+    | "\\xcancel"           -> FUN_AR1 "\\xcancel "
     | "\\cancelto"         -> FUN_AR2 "\\cancelto "
     | "\\pmod"             -> FUN_AR1hl ("\\pmod ", ("(mod ", ")"))
     | "\\bmod"             -> FUN_AR1hl ("\\bmod ", ("mod ", ""))