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