Sha256: 51a411a66bde795925adede14ddd1e36edb869d2207fc9d2850cce0e4b6cdd42
Contents?: true
Size: 908 Bytes
Versions: 2
Compression:
Stored size: 908 Bytes
Contents
module Plurimath module Math module Symbols class Iota < Symbol INPUT = { unicodemath: [["iota", "ι"], parsing_wrapper(["upiota"], lang: :unicode)], asciimath: [["iota", "ι"], parsing_wrapper(["upiota"], lang: :asciimath)], 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.14 | lib/plurimath/math/symbols/iota.rb |
plurimath-0.8.13 | lib/plurimath/math/symbols/iota.rb |