Sha256: 247dd1a02acaaf68dab34cea03af6f13553354c0d46fb733ce322a12e7d2034c
Contents?: true
Size: 922 Bytes
Versions: 2
Compression:
Stored size: 922 Bytes
Contents
module Plurimath module Math module Symbols class UpcaseupOmega < Symbol INPUT = { unicodemath: [["Ω"], parsing_wrapper(["UpcaseOmega", "UpcaseupOmega"])], asciimath: [["Omega", "Ω"], parsing_wrapper(["upOmega"])], mathml: ["Ω"], latex: [["upOmega", "Omega", "Ω"]], omml: ["Ω"], html: ["Ω"], }.freeze # output methods def to_latex "\\upOmega" end def to_asciimath parsing_wrapper("upOmega") 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/upcaseup_omega.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/upcaseup_omega.rb |