Sha256: 1c4ba5819b0d42395fb22cc60aadf13df6c085bb23e02054db755ecc8219d069
Contents?: true
Size: 1010 Bytes
Versions: 2
Compression:
Stored size: 1010 Bytes
Contents
module Plurimath module Math module Symbols class Iiiint < Symbol INPUT = { unicodemath: [["⨌"], parsing_wrapper(["iiiint"])], asciimath: [["⨌"], parsing_wrapper(["iiiint"])], mathml: ["⨌"], latex: [["iiiint", "⨌"]], omml: ["⨌"], html: ["⨌"], }.freeze # output methods def to_latex "\\iiiint" end def to_asciimath parsing_wrapper("iiiint") 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 def is_nary_symbol? true end def nary_intent_name "quadruple integral" end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
plurimath-0.8.12 | lib/plurimath/math/symbols/iiiint.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/iiiint.rb |