Sha256: 7609be12743b294d03a0032e6871463abd4efba831cba2dca93bbaad221c0077
Contents?: true
Size: 869 Bytes
Versions: 2
Compression:
Stored size: 869 Bytes
Contents
module Plurimath module Math module Symbols class Finv < Symbol INPUT = { unicodemath: [["Ⅎ"], parsing_wrapper(["Finv"])], asciimath: [["Ⅎ"], parsing_wrapper(["Finv"])], mathml: ["Ⅎ"], latex: [["Finv", "Ⅎ"]], omml: ["Ⅎ"], html: ["Ⅎ"], }.freeze # output methods def to_latex "\\Finv" end def to_asciimath parsing_wrapper("Finv") 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.12 | lib/plurimath/math/symbols/finv.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/finv.rb |