Sha256: 8a066bdd5586c6cd52da2fc5e7c8bf5aee93888bc14f41cf0ee22b8c6a7f12bc
Contents?: true
Size: 834 Bytes
Versions: 4
Compression:
Stored size: 834 Bytes
Contents
module Plurimath module Math module Symbols class Varepsilon < Symbol INPUT = { unicodemath: ["ɛ", "varepsilon"], asciimath: ["varepsilon", "ɛ"], mathml: ["ɛ"], latex: ["varepsilon", "ɛ"], omml: ["ɛ"], html: ["ɛ"], }.freeze # output methods def to_latex "\\varepsilon" end def to_asciimath "varepsilon" 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
4 entries across 4 versions & 1 rubygems