Sha256: 73a42dc1296d86765621f12fe84d51a237a84806f6dd2e0dad19afe4d3d7d814
Contents?: true
Size: 859 Bytes
Versions: 2
Compression:
Stored size: 859 Bytes
Contents
module Plurimath module Math module Symbols class Upmu < Symbol INPUT = { unicodemath: [["Μ"], parsing_wrapper(["upMu"])], asciimath: [["Μ"], parsing_wrapper(["upMu"])], mathml: ["Μ"], latex: [["upMu", "Μ"]], omml: ["Μ"], html: ["Μ"], }.freeze # output methods def to_latex "\\upMu" end def to_asciimath parsing_wrapper("upMu") end def to_unicodemath Utility.html_entity_to_unicode("Μ") end def to_mathml_without_math_tag(_) ox_element("mi") << "Μ" end def to_omml_without_math_tag(_) "Μ" end def to_html "Μ" end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
plurimath-0.8.12 | lib/plurimath/math/symbols/upmu.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/upmu.rb |