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