Sha256: c62df621c4389fc6c944bafda5d37696905e534a38536592de1e5934f3c3587b
Contents?: true
Size: 924 Bytes
Versions: 2
Compression:
Stored size: 924 Bytes
Contents
module Plurimath module Math module Symbols class Lambda < Symbol INPUT = { unicodemath: [["lambda", "λ"], parsing_wrapper(["uplambda"], lang: :unicode)], asciimath: [["lambda", "λ"], parsing_wrapper(["uplambda"], lang: :asciimath)], 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
plurimath-0.8.14 | lib/plurimath/math/symbols/lambda.rb |
plurimath-0.8.13 | lib/plurimath/math/symbols/lambda.rb |