Sha256: f8ecbc19e5e5288d796eca1fb3f96c78a85229425b5a9121165d3c837ef6ecbe
Contents?: true
Size: 901 Bytes
Versions: 4
Compression:
Stored size: 901 Bytes
Contents
module Plurimath module Math module Symbols class Sum < Symbol INPUT = { unicodemath: [["∑"]], asciimath: [["∑"]], mathml: ["∑"], latex: [["∑"]], omml: ["∑"], html: ["∑"], }.freeze # output methods def to_latex "\\sum" end def to_asciimath "sum" 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 def tag_name "underover" end def omml_tag_name "undOvr" end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems