Sha256: dac84a9185173ff01c05d61d304d805b91be5eb7f7c7f5eaa835881d48c1a93b
Contents?: true
Size: 784 Bytes
Versions: 7
Compression:
Stored size: 784 Bytes
Contents
module Plurimath module Math module Symbols class Int < Symbol INPUT = { unicodemath: [["∫"]], asciimath: [["∫"]], mathml: ["∫"], latex: [["∫"]], omml: ["∫"], html: ["∫"], }.freeze # output methods def to_latex "\\int" end def to_asciimath "int" end def to_unicodemath Utility.html_entity_to_unicode("∫") end def to_mathml_without_math_tag ox_element("mo") << "∫" 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