Sha256: 98dce9f797c3823399b15e1415f899864515ca2197ec75281fdfb9d5aa20b23d
Contents?: true
Size: 999 Bytes
Versions: 12
Compression:
Stored size: 999 Bytes
Contents
module Plurimath module Math module Symbols class Biginterleave < Symbol INPUT = { unicodemath: [["⫼"], parsing_wrapper(["biginterleave"], lang: :unicode)], asciimath: [["⫼"], parsing_wrapper(["biginterleave"], lang: :asciimath)], mathml: ["⫼"], latex: [["biginterleave", "⫼"]], omml: ["⫼"], html: ["⫼"], }.freeze # output methods def to_latex(**) "\\biginterleave" end def to_asciimath(**) parsing_wrapper("biginterleave", 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