Class: Plurimath::Math::Function::Table
- Inherits:
-
Core
- Object
- Core
- Plurimath::Math::Function::Table
show all
- Defined in:
- lib/plurimath/math/function/table.rb,
lib/plurimath/math/function/table/align.rb,
lib/plurimath/math/function/table/array.rb,
lib/plurimath/math/function/table/cases.rb,
lib/plurimath/math/function/table/split.rb,
lib/plurimath/math/function/table/matrix.rb,
lib/plurimath/math/function/table/bmatrix.rb,
lib/plurimath/math/function/table/eqarray.rb,
lib/plurimath/math/function/table/pmatrix.rb,
lib/plurimath/math/function/table/vmatrix.rb,
lib/plurimath/math/function/table/multline.rb
Defined Under Namespace
Classes: Align, Array, Bmatrix, Cases, Eqarray, Matrix, Multline, Pmatrix, Split, Vmatrix
Constant Summary
collapse
- SIMPLE_TABLES =
%w[array align split].freeze
Constants inherited
from Core
Core::ALL_PARAMETERS, Core::REPLACABLES
Instance Attribute Summary collapse
Instance Method Summary
collapse
-
#==(object) ⇒ Object
-
#columnlines=(value) ⇒ Object
-
#frame=(value) ⇒ Object
-
#initialize(value = nil, open_paren = nil, close_paren = nil, options = {}) ⇒ Table
constructor
-
#intent_names ⇒ Object
-
#rowlines=(value) ⇒ Object
-
#to_asciimath(options:) ⇒ Object
-
#to_asciimath_math_zone(spacing, last = false, indent = true, options:) ⇒ Object
-
#to_html(options:) ⇒ Object
-
#to_latex(options:) ⇒ Object
-
#to_latex_math_zone(spacing, last = false, indent = true, options:) ⇒ Object
-
#to_mathml_math_zone(spacing, last = false, indent = true, options:) ⇒ Object
-
#to_mathml_without_math_tag(intent, options:) ⇒ Object
-
#to_omml_math_zone(spacing, last = false, indent = true, display_style:, options:) ⇒ Object
-
#to_omml_without_math_tag(display_style, options:) ⇒ Object
-
#to_unicodemath(options:) ⇒ Object
-
#to_unicodemath_math_zone(spacing, last = false, indent = true, options:) ⇒ Object
Methods inherited from Core
#ascii_fields_to_print, #class_name, #cloned_objects, #common_math_zone_conversion, descendants, #dump_mathml, #dump_nodes, #dump_omml, #dump_ox_nodes, #empty_tag, #extract_class_name_from_text, #extractable?, #filtered_values, #font_style_t_tag, #get, #gsub_spacing, inherited, #insert_t_tag, #invert_unicode_symbols, #is_binary_function?, #is_mrow?, #is_mstyle?, #is_nary_function?, #is_nary_symbol?, #is_ternary_function?, #is_unary?, #latex_fields_to_print, #line_breaking, #linebreak?, #mathml_fields_to_print, #mathml_nodes, #mini_sized?, #msty_tag_with_attrs, #nary_attr_value, #nary_intent_name, #omml_fields_to_print, #omml_nodes, #omml_parameter, #omml_tag_name, #ox_element, #paren?, #pretty_print_instance_variables, #prime_unicode?, #r_element, #replacable_values, #result, #separate_table, #set, #symbol?, #tag_name, #to_ms_value, #unicodemath_fields_to_print, #unicodemath_parens, #updated_object_values, #validate_function_formula, #validate_mathml_fields, #variable_value, #variables
Constructor Details
#initialize(value = nil, open_paren = nil, close_paren = nil, options = {}) ⇒ Table
Returns a new instance of Table.
22
23
24
25
26
27
28
29
30
|
# File 'lib/plurimath/math/function/table.rb', line 22
def initialize(value = nil,
open_paren = nil,
close_paren = nil,
options = {})
@value = value
@open_paren = Utility.symbols_class(open_paren, lang: :unicodemath)
@close_paren = Utility.symbols_class(close_paren, lang: :unicodemath)
@options = options
end
|
Instance Attribute Details
#close_paren ⇒ Object
Returns the value of attribute close_paren.
18
19
20
|
# File 'lib/plurimath/math/function/table.rb', line 18
def close_paren
@close_paren
end
|
#open_paren ⇒ Object
Returns the value of attribute open_paren.
18
19
20
|
# File 'lib/plurimath/math/function/table.rb', line 18
def open_paren
@open_paren
end
|
#options ⇒ Object
Returns the value of attribute options.
18
19
20
|
# File 'lib/plurimath/math/function/table.rb', line 18
def options
@options
end
|
#value ⇒ Object
Returns the value of attribute value.
18
19
20
|
# File 'lib/plurimath/math/function/table.rb', line 18
def value
@value
end
|
Instance Method Details
#==(object) ⇒ Object
32
33
34
35
36
37
38
|
# File 'lib/plurimath/math/function/table.rb', line 32
def ==(object)
object.class == self.class &&
object.value == value &&
object.options == options &&
object.open_paren == open_paren &&
object.close_paren == close_paren
end
|
#columnlines=(value) ⇒ Object
163
164
165
166
167
168
169
170
171
172
|
# File 'lib/plurimath/math/function/table.rb', line 163
def columnlines=(value)
return if value.nil? || value.empty?
return if value.split.all? { |val| val.include?("none") }
Plurimath::Utility.table_separator(
value.split,
@value,
)
set_option(:columnlines, value)
end
|
#frame=(value) ⇒ Object
151
152
153
154
155
|
# File 'lib/plurimath/math/function/table.rb', line 151
def frame=(value)
return if value.nil? || value.empty?
set_option(:frame, value)
end
|
#intent_names ⇒ Object
139
140
141
142
143
144
145
146
147
148
149
|
# File 'lib/plurimath/math/function/table.rb', line 139
def intent_names
{
curly_braced_matrix: ":curly-braced-matrix",
parenthesized_matrix: ":parenthesized-matrix",
bracketed_matrix: ":bracketed-matrix",
normed_matrix: ":normed-matrix",
determinant: ":determinant",
equations: ":equations",
cases: ":cases",
}
end
|
#rowlines=(value) ⇒ Object
157
158
159
160
161
|
# File 'lib/plurimath/math/function/table.rb', line 157
def rowlines=(value)
return if value.nil? || value.empty?
set_option(:rowlines, value)
end
|
#to_asciimath(options:) ⇒ Object
40
41
42
43
44
45
46
47
48
|
# File 'lib/plurimath/math/function/table.rb', line 40
def to_asciimath(options:)
return parentheless_table(options: options) if SIMPLE_TABLES.include?(class_name)
parenthesis = Asciimath::Constants::TABLE_PARENTHESIS
first_value = value&.map { |val| val&.to_asciimath(options: options) }&.join(", ")
lparen = open_paren.nil? ? "[" : open_paren.to_asciimath(options: options)
rparen = close_paren.nil? ? parenthesis[lparen.to_sym] : close_paren.to_asciimath(options: options)
"#{lparen}#{first_value}#{rparen}"
end
|
#to_asciimath_math_zone(spacing, last = false, indent = true, options:) ⇒ Object
104
105
106
107
108
109
|
# File 'lib/plurimath/math/function/table.rb', line 104
def to_asciimath_math_zone(spacing, last = false, indent = true, options:)
[
"#{spacing}\"table\" function apply\n",
Formula.new(value).to_asciimath_math_zone(gsub_spacing(spacing, last), last, indent, options: options),
]
end
|
#to_html(options:) ⇒ Object
81
82
83
84
|
# File 'lib/plurimath/math/function/table.rb', line 81
def to_html(options:)
first_value = value.map { |val| val.to_html(options: options) }.join
"<table>#{first_value}</table>"
end
|
#to_latex(options:) ⇒ Object
70
71
72
73
74
75
76
77
78
79
|
# File 'lib/plurimath/math/function/table.rb', line 70
def to_latex(options:)
return "\\begin{Vmatrix}#{latex_content(options: options)}\\end{Vmatrix}" if open_paren.is_a?(Math::Symbols::Paren::Norm)
separator = "{#{table_attribute(:latex)}}" if environment&.include?("array")
left_paren = open_paren&.to_latex(options: options) || "."
right_paren = close_paren&.to_latex(options: options) || "."
left = "\\left #{left_paren.delete_prefix("\\left")}\\begin{matrix}"
right = "\\end{matrix}\\right #{right_paren.delete_prefix("\\right")}"
"#{left}#{separator}#{latex_content(options: options)}#{right}"
end
|
#to_latex_math_zone(spacing, last = false, indent = true, options:) ⇒ Object
111
112
113
114
115
116
|
# File 'lib/plurimath/math/function/table.rb', line 111
def to_latex_math_zone(spacing, last = false, indent = true, options:)
[
"#{spacing}\"table\" function apply\n",
Formula.new(value).to_latex_math_zone(gsub_spacing(spacing, last), last, indent, options: options),
]
end
|
#to_mathml_math_zone(spacing, last = false, indent = true, options:) ⇒ Object
118
119
120
121
122
123
|
# File 'lib/plurimath/math/function/table.rb', line 118
def to_mathml_math_zone(spacing, last = false, indent = true, options:)
[
"#{spacing}\"table\" function apply\n",
Formula.new(value).to_mathml_math_zone(gsub_spacing(spacing, last), last, indent, options: options),
]
end
|
#to_mathml_without_math_tag(intent, options:) ⇒ Object
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# File 'lib/plurimath/math/function/table.rb', line 50
def to_mathml_without_math_tag(intent, options:)
table_tag = ox_element("mtable", attributes: table_attribute)
table_tag["intent"] = ":matrix(#{value.length},#{td_count})" if intent
Utility.update_nodes(
table_tag,
value&.map { |object| object&.to_mathml_without_math_tag(intent, options: options) },
)
return norm_table(table_tag) if open_paren.is_a?(Math::Symbols::Paren::Norm)
if mathml_paren_present?(open_paren, intent, options: options) || mathml_paren_present?(close_paren, intent, options: options)
first_paren = mo_element(mathml_parenthesis(open_paren, intent, options: options))
second_paren = mo_element(mathml_parenthesis(close_paren, intent, options: options))
attributes = { intent: ":fenced" } if intent
mrow = ox_element("mrow", attributes: attributes)
return Utility.update_nodes(mrow, [first_paren, table_tag, second_paren])
end
table_tag
end
|
#to_omml_math_zone(spacing, last = false, indent = true, display_style:, options:) ⇒ Object
125
126
127
128
129
130
|
# File 'lib/plurimath/math/function/table.rb', line 125
def to_omml_math_zone(spacing, last = false, indent = true, display_style:, options:)
[
"#{spacing}\"table\" function apply\n",
Formula.new(value).to_omml_math_zone(gsub_spacing(spacing, last), last, indent, display_style: display_style, options: options),
]
end
|
#to_omml_without_math_tag(display_style, options:) ⇒ Object
86
87
88
89
90
91
92
93
|
# File 'lib/plurimath/math/function/table.rb', line 86
def to_omml_without_math_tag(display_style, options:)
ox_table = if single_table?
single_td_table(display_style, options: options)
else
multiple_td_table(display_style, options: options)
end
fenced_table(ox_table)
end
|
#to_unicodemath(options:) ⇒ Object
95
96
97
98
99
100
101
102
|
# File 'lib/plurimath/math/function/table.rb', line 95
def to_unicodemath(options:)
table_values = value&.map { |val| val&.to_unicodemath(options: options) }&.join("@")
if unicodemath_table_class?
"#{unicodemath_class_name}(#{table_values})"
else
"#{open_paren&.to_unicodemath(options: options)}■(#{table_values})#{close_paren&.to_unicodemath(options: options)}"
end
end
|
#to_unicodemath_math_zone(spacing, last = false, indent = true, options:) ⇒ Object
132
133
134
135
136
137
|
# File 'lib/plurimath/math/function/table.rb', line 132
def to_unicodemath_math_zone(spacing, last = false, indent = true, options:)
[
"#{spacing}\"table\" function apply\n",
Formula.new(value).to_unicodemath_math_zone(gsub_spacing(spacing, last), last, indent, options: options),
]
end
|