Class: Expon
Instance Method Summary collapse
-
#initialize(some_base, some_exp) ⇒ Expon
constructor
A new instance of Expon.
- #latex ⇒ Object
Methods inherited from Latex
#*, #**, #+, #-, #-@, #/, #glue, #is, #my_json, #ne, #of, #to_ltx, #wrap
Constructor Details
#initialize(some_base, some_exp) ⇒ Expon
Returns a new instance of Expon.
176 177 178 179 |
# File 'lib/annlat/LaRuby.rb', line 176 def initialize(some_base, some_exp) @base = some_base.to_ltx @exp = some_exp.to_ltx end |