Sha256: 803e8dc92b97dcb72a216cef109bfb695b05562aa5dd412462e1868a5416c652
Contents?: true
Size: 887 Bytes
Versions: 7
Compression:
Stored size: 887 Bytes
Contents
module Plurimath module Math module Symbols class Lambda < Symbol INPUT = { unicodemath: [["lambda", "λ"], parsing_wrapper(["uplambda"])], asciimath: [["lambda", "λ"], parsing_wrapper(["uplambda"])], mathml: ["λ"], latex: [["uplambda", "lambda", "λ"]], omml: ["λ"], html: ["λ"], }.freeze # output methods def to_latex "\\lambda" end def to_asciimath "lambda" 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