Sha256: e857e6a04565b433e6b2feafec84d47eb6719702bcb1539404c24d9422082bd7
Contents?: true
Size: 1.32 KB
Versions: 4
Compression:
Stored size: 1.32 KB
Contents
# frozen_string_literal: true require_relative "unary_function" module Plurimath module Math module Function class Bar < UnaryFunction def to_latex first_value = "{#{parameter_one.to_latex}}" if parameter_one "\\overline#{first_value}" end def to_mathml_without_math_tag first_value = parameter_one&.to_mathml_without_math_tag Utility.update_nodes( Utility.ox_element("mover"), [ first_value, Utility.ox_element("mo") << "¯", ], ) end def to_omml_without_math_tag bar = Utility.ox_element("bar", namespace: "m") me = Utility.ox_element("e", namespace: "m") Utility.update_nodes(me, omml_value) if parameter_one Utility.update_nodes( bar, [ bar_pr, me, ], ) [bar] end protected def bar_pr attrs = { "m:val": "top" } barpr = Utility.ox_element("barPr", namespace: "m") pos = Utility.ox_element("pos", namespace: "m", attributes: attrs) ctrlp = Utility.pr_element("ctrl", true, namespace: "m") Utility.update_nodes(barpr, [pos, ctrlp]) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems