Sha256: 18a782a1f3548b59e3572abe02d5422831ccf85997de60ed1c47b66c5721d4fb
Contents?: true
Size: 860 Bytes
Versions: 7
Compression:
Stored size: 860 Bytes
Contents
module Plurimath module Math module Symbols class Eta < Symbol INPUT = { unicodemath: [["eta", "η"], parsing_wrapper(["upeta"])], asciimath: [["eta", "η"], parsing_wrapper(["upeta"])], 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
7 entries across 7 versions & 1 rubygems