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", "&#x3bb;"], parsing_wrapper(["uplambda"], lang: :unicode)],
          asciimath: [["lambda", "&#x3bb;"], parsing_wrapper(["uplambda"], lang: :asciimath)],
          mathml: ["&#x3bb;"],
          latex: [["uplambda", "lambda", "&#x3bb;"]],
          omml: ["&#x3bb;"],
          html: ["&#x3bb;"],
        }.freeze

        # output methods
        def to_latex
          "\\lambda"
        end

        def to_asciimath
          "lambda"
        end

        def to_unicodemath
          Utility.html_entity_to_unicode("&#x3bb;")
        end

        def to_mathml_without_math_tag(_)
          ox_element("mi") << "&#x3bb;"
        end

        def to_omml_without_math_tag(_)
          "&#x3bb;"
        end

        def to_html
          "&#x3bb;"
        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