Class: Plurimath::Math::Function::Table::Multline

Inherits:
Table
  • Object
show all
Defined in:
lib/plurimath/math/function/table/multline.rb

Instance Method Summary collapse

Constructor Details

#initialize(value, open_paren = "[", close_paren = "]", options = {}) ⇒ Multline

Returns a new instance of Multline.



8
9
10
11
12
13
# File 'lib/plurimath/math/function/table/multline.rb', line 8

def initialize(value,
               open_paren = "[",
               close_paren = "]",
               options = {})
  super
end

Instance Method Details

#to_latex(options:) ⇒ Object



15
16
17
# File 'lib/plurimath/math/function/table/multline.rb', line 15

def to_latex(options:)
  "\\begin#{opening}#{latex_content(options: options)}\\end#{matrix_class}"
end