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