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