Sha256: a2cc3c12028ad7beedf9746fc5764fcb94e86b5109e34f38ad3923fba1bcfb32
Contents?: true
Size: 921 Bytes
Versions: 14
Compression:
Stored size: 921 Bytes
Contents
module Plurimath module Math module Symbols class Eta < Symbol INPUT = { unicodemath: [["eta", "η"], parsing_wrapper(["upeta"], lang: :unicode)], asciimath: [["eta", "η"], parsing_wrapper(["upeta"], lang: :asciimath)], mathml: ["η"], latex: [["upeta", "eta", "η"]], omml: ["η"], html: ["η"], }.freeze # output methods def to_latex(**) "\\eta" end def to_asciimath(**) "eta" 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