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