Sha256: 92c8b3aefe3ce1e9a62fe2293403304862aac647a9a250447b4bfb7136623824
Contents?: true
Size: 927 Bytes
Versions: 2
Compression:
Stored size: 927 Bytes
Contents
module Plurimath module Math module Symbols class Varsigma < 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("varsigma") 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/varsigma.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/varsigma.rb |