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