Sha256: b7fd318a43167043df467a9a15831c156003352b64df76eaf5d95bc0bcf9ec67

Contents?: true

Size: 970 Bytes

Versions: 4

Compression:

Stored size: 970 Bytes

Contents

# frozen_string_literal: true

require_relative "unary_function"

module Plurimath
  module Math
    module Function
      class Substack < UnaryFunction
        FUNCTION = {
          name: "substack",
          first_value: "above",
          second_value: "below",
        }.freeze

        def to_asciimath
          "{:#{parameter_one.compact.map(&:to_asciimath).join(",")}:}"
        end

        def to_latex
          "\\#{class_name}{#{parameter_one&.compact&.map(&:to_latex)&.join(" \\\\ ")}}"
        end

        def to_mathml_without_math_tag(intent)
          Utility.update_nodes(
            ox_element("mtable"),
            mathml_value(intent),
          )
        end

        def to_omml_without_math_tag(display_style)
          Table.new(parameter_one).to_omml_without_math_tag(display_style)
        end

        def to_unicodemath
          "■(#{parameter_one.compact.map(&:to_unicodemath).join("@")})"
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
plurimath-0.8.14 lib/plurimath/math/function/substack.rb
plurimath-0.8.13 lib/plurimath/math/function/substack.rb
plurimath-0.8.12 lib/plurimath/math/function/substack.rb
plurimath-0.8.11 lib/plurimath/math/function/substack.rb