Sha256: aa11008ee9a129c0f9eaeba3c8ef61c5a5f7d438dc4f2bb95ab8cc7cd30fa069
Contents?: true
Size: 994 Bytes
Versions: 14
Compression:
Stored size: 994 Bytes
Contents
module Plurimath module Math module Symbols class Digamma < Symbol INPUT = { unicodemath: [["ϝ"], parsing_wrapper(["updigamma", "digamma"], lang: :unicode)], asciimath: [["ϝ"], parsing_wrapper(["updigamma", "digamma"], lang: :asciimath)], mathml: ["ϝ"], latex: [["updigamma", "digamma", "ϝ"]], omml: ["ϝ"], html: ["ϝ"], }.freeze # output methods def to_latex(**) "\\updigamma" end def to_asciimath(**) parsing_wrapper("digamma", lang: :asciimath) 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
14 entries across 14 versions & 1 rubygems