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