From: Siebrand Mazeland Date: Mon, 18 Aug 2008 16:21:06 +0000 (+0000) Subject: (bug 13856) Make Greek omicron available in math notation. Patch by Colin Hall X-Git-Tag: 1.31.0-rc.0~45828 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22articles%22%2C%22id_article=%24id_article%22%29%20.%20%22?a=commitdiff_plain;h=0ea4e51035eb96016848b0d09762974d8ee89939;p=lhc%2Fweb%2Fwiklou.git (bug 13856) Make Greek omicron available in math notation. Patch by Colin Hall --- diff --git a/math/texutil.ml b/math/texutil.ml index 5ea16eeff5..e26ecba8d1 100644 --- a/math/texutil.ml +++ b/math/texutil.ml @@ -108,6 +108,10 @@ let find = function | "\\nu" -> LITERAL (HTMLABLEC (FONT_UF, "\\nu ", "ν")) | "\\Nu" -> (tex_use_ams (); LITERAL (HTMLABLEC (FONT_UF, "\\mathrm{N}", "Ν"))) + | "\\omicron" -> (tex_use_ams (); LITERAL (HTMLABLEC (FONT_UF, + "\\mathrm{o}", "ο"))) + | "\\Omicron" -> (tex_use_ams (); LITERAL (HTMLABLEC (FONT_UF, + "\\mathrm{O}", "Ο"))) | "\\pi" -> LITERAL (HTMLABLEC (FONT_UF, "\\pi ", "π")) | "\\Pi" -> LITERAL (HTMLABLEC (FONT_UF, "\\Pi ", "Π")) | "\\varpi" -> LITERAL (TEX_ONLY "\\varpi ")