Sha256: 5b8a1751cd1dd527821b2c5f1d2674098c0da04d80f4de448c1fc4c4979744b4
Contents?: true
Size: 931 Bytes
Versions: 2
Compression:
Stored size: 931 Bytes
Contents
module Plurimath module Math module Symbols class Upvarsigma < Symbol INPUT = { unicodemath: [["varsigma", "ς"], parsing_wrapper(["upvarsigma"])], asciimath: [["ς"], parsing_wrapper(["varsigma", "upvarsigma"])], mathml: ["ς"], latex: [["upvarsigma", "varsigma", "ς"]], omml: ["ς"], html: ["ς"], }.freeze # output methods def to_latex "\\upvarsigma" end def to_asciimath parsing_wrapper("upvarsigma") end def to_unicodemath Utility.html_entity_to_unicode("ς") end def to_mathml_without_math_tag(_) ox_element("mo") << "ς" 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/upvarsigma.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/upvarsigma.rb |