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