Sha256: 06f2707e7d62fc0a59221387ca944160fc591c7e885772ccb5d99119e0e3402a
Contents?: true
Size: 1005 Bytes
Versions: 16
Compression:
Stored size: 1005 Bytes
Contents
module Plurimath module Math module Symbols class Lvec < Symbol INPUT = { unicodemath: [["⃖"], parsing_wrapper(["overleftarrow", "LVec"], lang: :unicode)], asciimath: [["⃖"], parsing_wrapper(["overleftarrow", "LVec"], lang: :asciimath)], mathml: ["⃖"], latex: [["overleftarrow", "LVec", "⃖"]], omml: ["⃖"], html: ["⃖"], }.freeze # output methods def to_latex(**) "\\overleftarrow" end def to_asciimath(**) parsing_wrapper("LVec", lang: :asciimath) 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
16 entries across 16 versions & 1 rubygems