Sha256: 9927616ebfcc7dceaa2039bdf4b92403b54a402852912787e960af353e8ed197
Contents?: true
Size: 599 Bytes
Versions: 10
Compression:
Stored size: 599 Bytes
Contents
# frozen_string_literal: true require_relative "../table" module Plurimath module Math module Function class Table class Pmatrix < Table def initialize(value, open_paren = "(", close_paren = ")", options = {}) super end def to_latex "\\begin#{opening}#{latex_content}\\end#{matrix_class}" end def to_unicodemath "⒨(#{value.map(&:to_unicodemath).join("@")})" end end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems