Sha256: bde607b5c995eb7b8737ca8ff805fce60ce26b4b3074aa2f5fdbbcaba9a4710c
Contents?: true
Size: 762 Bytes
Versions: 14
Compression:
Stored size: 762 Bytes
Contents
module Plurimath module Math module Symbols class If < Symbol INPUT = { unicodemath: [["if"]], asciimath: [["if"]], mathml: ["if"], latex: [["if"]], omml: ["if"], html: ["if"], }.freeze # output methods def to_latex(**) "\\operatorname{if}" end def to_asciimath(**) "if" end def to_unicodemath(**) Utility.html_entity_to_unicode("if") end def to_mathml_without_math_tag(_, **) ox_element("mo") << "if" end def to_omml_without_math_tag(_, **) "if" end def to_html(**) "if" end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems