Sha256: 8959e8cdb345f3d76f98f9e8f19499ec08b47a73e9c36358e8e5549d7badd83d
Contents?: true
Size: 865 Bytes
Versions: 2
Compression:
Stored size: 865 Bytes
Contents
module Plurimath module Math module Symbols class Upeta < Symbol INPUT = { unicodemath: [["Η"], parsing_wrapper(["upEta"])], asciimath: [["Η"], parsing_wrapper(["upEta"])], mathml: ["Η"], latex: [["upEta", "Η"]], omml: ["Η"], html: ["Η"], }.freeze # output methods def to_latex "\\upEta" end def to_asciimath parsing_wrapper("upEta") 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/upeta.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/upeta.rb |