Index: trunk/phase3/math/texutil.ml |
— | — | @@ -704,7 +704,13 @@ |
705 | 705 | | "\\nLeftrightarrow" -> (tex_use_ams (); LITERAL (TEX_ONLY "\\nLeftrightarrow ")) |
706 | 706 | | "\\mathit" -> (tex_use_ams (); FUN_AR1hf ("\\mathit ", FONTFORCE_IT)) |
707 | 707 | | "\\mathrm" -> (tex_use_ams (); FUN_AR1hf ("\\mathrm ", FONTFORCE_RM)) |
| 708 | + | "\\mathord" -> (tex_use_ams (); FUN_AR1 "\\mathord ") |
708 | 709 | | "\\mathop" -> (tex_use_ams (); FUN_AR1 "\\mathop ") |
| 710 | + | "\\mathbin" -> (tex_use_ams (); FUN_AR1 "\\mathbin ") |
| 711 | + | "\\mathrel" -> (tex_use_ams (); FUN_AR1 "\\mathrel ") |
| 712 | + | "\\mathopen" -> (tex_use_ams (); FUN_AR1 "\\mathopen ") |
| 713 | + | "\\mathclose" -> (tex_use_ams (); FUN_AR1 "\\mathclose ") |
| 714 | + | "\\mathpunct" -> (tex_use_ams (); FUN_AR1 "\\mathpunct ") |
709 | 715 | | "\\boldsymbol" -> (tex_use_ams (); FUN_AR1 "\\boldsymbol ") |
710 | 716 | | "\\bold" -> (tex_use_ams (); FUN_AR1 "\\mathbf ") |
711 | 717 | | "\\Bbb" -> (tex_use_ams (); FUN_AR1 "\\mathbb ") |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -88,6 +88,7 @@ |
89 | 89 | * (bug 7432) Change language name for Aromanian (roa-rup) |
90 | 90 | * (bug 908) Unexistent special pages now generate a red link. |
91 | 91 | * (bug 7899) Added \hline and \vline to the list of allowed TeX commands |
| 92 | +* (bug 7993) support mathematical symbol classes |
92 | 93 | |
93 | 94 | == MediaWiki API changes since 1.10 == |
94 | 95 | |