Sha256: ad047a26e69060257718dc352bdf3742ce12baecf52934d121b819e6e12098cd
Contents?: true
Size: 927 Bytes
Versions: 2
Compression:
Stored size: 927 Bytes
Contents
module Plurimath module Math module Symbols class Varkappa < Symbol INPUT = { unicodemath: [["varkappa", "ϰ"], parsing_wrapper(["upvarkappa"])], asciimath: [["ϰ"], parsing_wrapper(["varkappa", "upvarkappa"])], mathml: ["ϰ"], latex: [["upvarkappa", "varkappa", "ϰ"]], omml: ["ϰ"], html: ["ϰ"], }.freeze # output methods def to_latex "\\upvarkappa" end def to_asciimath parsing_wrapper("varkappa") 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/varkappa.rb |
plurimath-0.8.11 | lib/plurimath/math/symbols/varkappa.rb |