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