Sha256: e6338c3c4dd6fee1a1a51a219a5a64b2d0efe10079a2cd725ffc04d0ceaba562
Contents?: true
Size: 1010 Bytes
Versions: 14
Compression:
Stored size: 1010 Bytes
Contents
module Plurimath module Math module Symbols class Koppa < Symbol INPUT = { unicodemath: [["ϙ"], parsing_wrapper(["upoldkoppa", "qoppa", "koppa"], lang: :unicode)], asciimath: [["ϙ"], parsing_wrapper(["upoldkoppa", "qoppa", "koppa"], lang: :asciimath)], mathml: ["ϙ"], latex: [["upoldkoppa", "qoppa", "koppa", "ϙ"]], omml: ["ϙ"], html: ["ϙ"], }.freeze # output methods def to_latex(**) "\\koppa" end def to_asciimath(**) parsing_wrapper("koppa", lang: :asciimath) 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
14 entries across 14 versions & 1 rubygems