Sha256: 239e1d88f5bd208ac56abc7d6b18ef783148c31f2cedc03e2ca84b8ecc9ff186
Contents?: true
Size: 945 Bytes
Versions: 10
Compression:
Stored size: 945 Bytes
Contents
module Plurimath module Math module Symbols class Finv < Symbol INPUT = { unicodemath: [["Ⅎ"], parsing_wrapper(["Finv"], lang: :unicode)], asciimath: [["Ⅎ"], parsing_wrapper(["Finv"], lang: :asciimath)], mathml: ["Ⅎ"], latex: [["Finv", "Ⅎ"]], omml: ["Ⅎ"], html: ["Ⅎ"], }.freeze # output methods def to_latex(**) "\\Finv" end def to_asciimath(**) parsing_wrapper("Finv", 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 end end end end
Version data entries
10 entries across 10 versions & 1 rubygems