Sha256: 84eb1704c2de93e75e62b600684f183b4b3e4feb580c7dbac2b16ad4f60debc4
Contents?: true
Size: 887 Bytes
Versions: 2
Compression:
Stored size: 887 Bytes
Contents
module Plurimath module Math module Symbols class UpcaseTheta < Symbol INPUT = { unicodemath: [["Theta", "Θ"], parsing_wrapper(["upTheta"])], asciimath: [["Theta", "Θ"], parsing_wrapper(["upTheta"])], mathml: ["Θ"], latex: [["upTheta", "Theta", "Θ"]], omml: ["Θ"], html: ["Θ"], }.freeze # output methods def to_latex "\\Theta" end def to_asciimath "Theta" end def to_unicodemath Utility.html_entity_to_unicode("Θ") end def to_mathml_without_math_tag(_) ox_element("mo") << "Θ" 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/upcase_theta.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/upcase_theta.rb |