Sha256: a0487ed5f1cb45bf90f221a490c1f25d1dad4dccaac96909dbc83492b22b4bee
Contents?: true
Size: 921 Bytes
Versions: 7
Compression:
Stored size: 921 Bytes
Contents
module Plurimath module Math module Symbols class Nsub < Symbol INPUT = { unicodemath: [["nsub", "⊄"], parsing_wrapper(["nsubset"])], asciimath: [["⊄"], parsing_wrapper(["nsub", "nsubset"])], mathml: ["⊄"], latex: [["nsubset", "⊄"], parsing_wrapper(["nsub"])], omml: ["⊄"], html: ["⊄"], }.freeze # output methods def to_latex "\\nsubset" end def to_asciimath parsing_wrapper("nsub") 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
7 entries across 7 versions & 1 rubygems