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