Sha256: 2adcb7a457e3ff38169fed53bba06a03215bf5445107fc693603037f2bad8ec9
Contents?: true
Size: 1.06 KB
Versions: 12
Compression:
Stored size: 1.06 KB
Contents
module Plurimath module Math module Symbols class Iiiint < Symbol INPUT = { unicodemath: [["⨌"], parsing_wrapper(["iiiint"], lang: :unicode)], asciimath: [["⨌"], parsing_wrapper(["iiiint"], lang: :asciimath)], mathml: ["⨌"], latex: [["iiiint", "⨌"]], omml: ["⨌"], html: ["⨌"], }.freeze # output methods def to_latex(**) "\\iiiint" end def to_asciimath(**) parsing_wrapper("iiiint", 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 def is_nary_symbol? true end def nary_intent_name ":quadruple integral" end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems