Sha256: fc582de7fbe5c91144dda47b86668f188265e814c79da1e8947cf0fedd23483c
Contents?: true
Size: 878 Bytes
Versions: 7
Compression:
Stored size: 878 Bytes
Contents
module Plurimath module Math module Symbols class Delta < Symbol INPUT = { unicodemath: [["delta", "δ"], parsing_wrapper(["updelta"])], asciimath: [["delta", "δ"], parsing_wrapper(["updelta"])], mathml: ["δ"], latex: [["updelta", "delta", "δ"]], omml: ["δ"], html: ["δ"], }.freeze # output methods def to_latex "\\delta" end def to_asciimath "delta" 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
7 entries across 7 versions & 1 rubygems