Sha256: 7ec4c8d2b56acf58034bddd93e3507756b041e2a10ceeab7279caa577c68fee3
Contents?: true
Size: 865 Bytes
Versions: 2
Compression:
Stored size: 865 Bytes
Contents
module Plurimath module Math module Symbols class Uptau < Symbol INPUT = { unicodemath: [["Τ"], parsing_wrapper(["upTau"])], asciimath: [["Τ"], parsing_wrapper(["upTau"])], mathml: ["Τ"], latex: [["upTau", "Τ"]], omml: ["Τ"], html: ["Τ"], }.freeze # output methods def to_latex "\\upTau" end def to_asciimath parsing_wrapper("upTau") end def to_unicodemath Utility.html_entity_to_unicode("Τ") end def to_mathml_without_math_tag(_) ox_element("mi") << "Τ" end def to_omml_without_math_tag(_) "Τ" end def to_html "Τ" end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
plurimath-0.8.12 | lib/plurimath/math/symbols/uptau.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/uptau.rb |