Sha256: c77446054ea3740d597437cc08d1b15c29b7619109af7494311dc59152642310
Contents?: true
Size: 891 Bytes
Versions: 2
Compression:
Stored size: 891 Bytes
Contents
module Plurimath module Math module Symbols class Lnot < Symbol INPUT = { unicodemath: [["¬", "lnot"], parsing_wrapper(["not"], lang: :unicode)], asciimath: [["not", "¬"], parsing_wrapper(["lnot"], lang: :asciimath)], mathml: ["¬"], latex: [["lnot", "¬"], parsing_wrapper(["not"], lang: :latex)], omml: ["¬"], }.freeze # output methods def to_latex "\\lnot" end def to_asciimath "not" 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/lnot.rb |
plurimath-0.8.13 | lib/plurimath/math/symbols/lnot.rb |