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