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