Sha256: 743f87f4da3344b2fc926fb4a41bc313ecb0a377ceaffa90b60b5e1ef0fb9aaf
Contents?: true
Size: 1.04 KB
Versions: 12
Compression:
Stored size: 1.04 KB
Contents
module Plurimath module Math module Symbols class Bigwedge < Symbol INPUT = { unicodemath: [["⋀"], parsing_wrapper(["bigwedge", "^^^"], lang: :unicode)], asciimath: [["bigwedge", "^^^", "⋀"]], mathml: ["⋀"], latex: [["bigwedge", "⋀"], parsing_wrapper(["^^^"], lang: :latex)], omml: ["⋀"], html: ["⋀"], }.freeze # output methods def to_latex(**) "\\bigwedge" end def to_asciimath(**) "bigwedge" 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 def nary_intent_name ":n-ary" end def is_nary_symbol? true end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems