Sha256: f9edaa72fe956c08803b5b32f57599a4c3208e7739cab7ab0d74e818cf3357a2
Contents?: true
Size: 921 Bytes
Versions: 2
Compression:
Stored size: 921 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
plurimath-0.8.14 | lib/plurimath/math/symbols/finv.rb |
plurimath-0.8.13 | lib/plurimath/math/symbols/finv.rb |