Sha256: 8e526b89b9ae24328eb2a899e6ea03bfe8417f9a25c020e569b678015dc197e4
Contents?: true
Size: 1006 Bytes
Versions: 14
Compression:
Stored size: 1006 Bytes
Contents
module Plurimath module Math module Symbols class Lneq < Symbol INPUT = { unicodemath: [["lneq", "≨"], parsing_wrapper(["lneqq"], lang: :unicode)], asciimath: [["≨"], parsing_wrapper(["lneq", "lneqq"], lang: :asciimath)], mathml: ["≨"], latex: [["lneqq", "≨"], parsing_wrapper(["lneq"], lang: :latex)], omml: ["≨"], html: ["≨"], }.freeze # output methods def to_latex(**) "\\lneqq" end def to_asciimath(**) parsing_wrapper("lneq", 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