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