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