Sha256: 168880cf755816149bee7942f37ec24df2f031d7288a35f4163ad4d7f96b9480
Contents?: true
Size: 986 Bytes
Versions: 16
Compression:
Stored size: 986 Bytes
Contents
module Plurimath module Math module Symbols class Land < Symbol INPUT = { unicodemath: [["wedge", "∧"], parsing_wrapper(["^^", "land"], lang: :unicode)], asciimath: [["wedge", "^^", "∧"], parsing_wrapper(["land"], lang: :asciimath)], mathml: ["∧"], latex: [["wedge", "land", "∧"], parsing_wrapper(["^^"], lang: :latex)], omml: ["∧"], html: ["∧"], }.freeze # output methods def to_latex(**) "\\land" end def to_asciimath(**) "^^" end def to_unicodemath(**) Utility.html_entity_to_unicode("∧") end def to_mathml_without_math_tag(_, **) ox_element("mo") << "∧" end def to_omml_without_math_tag(_, **) "∧" end def to_html(**) "∧" end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems