Sha256: aef3fefaabca81dc3610b110d6e12c1a8a4bc8f62611e600bfb03c2957e2c8ac
Contents?: true
Size: 867 Bytes
Versions: 12
Compression:
Stored size: 867 Bytes
Contents
module Plurimath module Math module Symbols class Cap < Symbol INPUT = { unicodemath: [["cap", "∩"]], asciimath: [["∩", "cap"]], mathml: ["∩"], latex: [["cap", "∩"]], omml: ["∩"], html: ["∩"], }.freeze # output methods def to_latex(**) "\\Cap" end def to_asciimath(**) parsing_wrapper("Cap", 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
12 entries across 12 versions & 1 rubygems