Sha256: 9a6afb9a1989886dbfb806ae1d0401fb974c3adb48424d5e49c4aaa75c604458
Contents?: true
Size: 1.01 KB
Versions: 4
Compression:
Stored size: 1.01 KB
Contents
module Plurimath module Math module Symbols class Oint < Symbol INPUT = { unicodemath: [["∮"]], asciimath: [["∮"]], mathml: ["∮"], latex: [["∮"]], omml: ["∮"], html: ["∮"], }.freeze # output methods def to_latex "\\oint" end def to_asciimath "oint" 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 is_nary_symbol? true end def nary_intent_name "contour integral" 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