Sha256: 96f34eded7e37a5a47155318b8b5b9a11c9af65c5ace16b345eae70768758852
Contents?: true
Size: 932 Bytes
Versions: 10
Compression:
Stored size: 932 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
10 entries across 10 versions & 1 rubygems