Sha256: 82a641e7b7a84a7785298cf6617ddf724ce4384ffa1e154d186cd198cf873de7
Contents?: true
Size: 1.35 KB
Versions: 4
Compression:
Stored size: 1.35 KB
Contents
# frozen_string_literal: true require_relative "../table" module Plurimath module Math module Function class Table class Array < Table def initialize(value = [], open_paren = "[", close_paren = "]", options = {}) super end def to_latex "\\begin{array}#{array_args || '.'}#{latex_content}\\end{array}" end def to_mathml_without_math_tag(intent) Utility.update_nodes( ox_element("mtable", attributes: attributes(intent)), value&.map { |object| object&.to_mathml_without_math_tag(intent) }, ) end private def array_args args = [] value.first.parameter_one.each do |td| args << if Utility.symbol_value(td.parameter_one.first, "|") "|" else Utility::ALIGNMENT_LETTERS.invert[Hash(td.parameter_two)[:columnalign]]&.to_s end end "{#{args.join}}" unless args.compact.empty? end def attributes(intent) return table_attribute unless intent table_attribute.merge(intent: ":equations") end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems