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