Class: MathML::Frac

Inherits:
Element show all
Defined in:
lib/math_ml.rb

Instance Attribute Summary

Attributes inherited from Element

#display_style

Instance Method Summary collapse

Methods inherited from Element

#<<, #as_display_style

Methods inherited from XMLElement

#pop

Constructor Details

#initialize(numerator, denominator) ⇒ Frac

Returns a new instance of Frac.



108
109
110
111
112
# File 'lib/math_ml.rb', line 108

def initialize(numerator, denominator)
	super("mfrac")
	self << numerator
	self << denominator
end