module Org.Data.Entities where data Entity = Entity { entityName :: Text, latexReplacement :: Text, latexMathP :: Bool, htmlReplacement :: Text, asciiReplacement :: Text, latin1Replacement :: Text, utf8Replacement :: Text } deriving (Show, Eq, Ord, Read, Typeable, Generic) {- Generated by the elisp function: (defun insert-entities () (interactive) (cl-loop for entity in org-entities do (pcase entity (`(,name ,tex ,mathp ,html ,ascii ,latin ,utf8) (insert (format " , Entity %S %S %s %S %S %S %S\n" name tex (if mathp "True" "False") html ascii latin utf8)))))) -} defaultEntitiesNames :: [Text] defaultEntitiesNames = map entityName defaultEntities defaultEntitiesMap :: Map Text Entity defaultEntitiesMap = fromList $ map (\e -> (entityName e, e)) defaultEntities defaultEntities :: [Entity] defaultEntities = [ Entity "Agrave" "\\`{A}" False "À" "A" "À" "À", Entity "agrave" "\\`{a}" False "à" "a" "à" "à", Entity "Aacute" "\\'{A}" False "Á" "A" "Á" "Á", Entity "aacute" "\\'{a}" False "á" "a" "á" "á", Entity "Acirc" "\\^{A}" False "Â" "A" "Â" "Â", Entity "acirc" "\\^{a}" False "â" "a" "â" "â", Entity "Amacr" "\\={A}" False "Ā" "A" "Ã" "Ã", Entity "amacr" "\\={a}" False "ā" "a" "ã" "ã", Entity "Atilde" "\\~{A}" False "Ã" "A" "Ã" "Ã", Entity "atilde" "\\~{a}" False "ã" "a" "ã" "ã", Entity "Auml" "\\\"{A}" False "Ä" "Ae" "Ä" "Ä", Entity "auml" "\\\"{a}" False "ä" "ae" "ä" "ä", Entity "Aring" "\\AA{}" False "Å" "A" "Å" "Å", Entity "AA" "\\AA{}" False "Å" "A" "Å" "Å", Entity "aring" "\\aa{}" False "å" "a" "å" "å", Entity "AElig" "\\AE{}" False "Æ" "AE" "Æ" "Æ", Entity "aelig" "\\ae{}" False "æ" "ae" "æ" "æ", Entity "Ccedil" "\\c{C}" False "Ç" "C" "Ç" "Ç", Entity "ccedil" "\\c{c}" False "ç" "c" "ç" "ç", Entity "Egrave" "\\`{E}" False "È" "E" "È" "È", Entity "egrave" "\\`{e}" False "è" "e" "è" "è", Entity "Eacute" "\\'{E}" False "É" "E" "É" "É", Entity "eacute" "\\'{e}" False "é" "e" "é" "é", Entity "Ecirc" "\\^{E}" False "Ê" "E" "Ê" "Ê", Entity "ecirc" "\\^{e}" False "ê" "e" "ê" "ê", Entity "Euml" "\\\"{E}" False "Ë" "E" "Ë" "Ë", Entity "euml" "\\\"{e}" False "ë" "e" "ë" "ë", Entity "Igrave" "\\`{I}" False "Ì" "I" "Ì" "Ì", Entity "igrave" "\\`{i}" False "ì" "i" "ì" "ì", Entity "Iacute" "\\'{I}" False "Í" "I" "Í" "Í", Entity "iacute" "\\'{i}" False "í" "i" "í" "í", Entity "Idot" "\\.{I}" False "&idot;" "I" "İ" "İ", Entity "inodot" "\\i" False "ı" "i" "ı" "ı", Entity "Icirc" "\\^{I}" False "Î" "I" "Î" "Î", Entity "icirc" "\\^{i}" False "î" "i" "î" "î", Entity "Iuml" "\\\"{I}" False "Ï" "I" "Ï" "Ï", Entity "iuml" "\\\"{i}" False "ï" "i" "ï" "ï", Entity "Ntilde" "\\~{N}" False "Ñ" "N" "Ñ" "Ñ", Entity "ntilde" "\\~{n}" False "ñ" "n" "ñ" "ñ", Entity "Ograve" "\\`{O}" False "Ò" "O" "Ò" "Ò", Entity "ograve" "\\`{o}" False "ò" "o" "ò" "ò", Entity "Oacute" "\\'{O}" False "Ó" "O" "Ó" "Ó", Entity "oacute" "\\'{o}" False "ó" "o" "ó" "ó", Entity "Ocirc" "\\^{O}" False "Ô" "O" "Ô" "Ô", Entity "ocirc" "\\^{o}" False "ô" "o" "ô" "ô", Entity "Otilde" "\\~{O}" False "Õ" "O" "Õ" "Õ", Entity "otilde" "\\~{o}" False "õ" "o" "õ" "õ", Entity "Ouml" "\\\"{O}" False "Ö" "Oe" "Ö" "Ö", Entity "ouml" "\\\"{o}" False "ö" "oe" "ö" "ö", Entity "Oslash" "\\O" False "Ø" "O" "Ø" "Ø", Entity "oslash" "\\o{}" False "ø" "o" "ø" "ø", Entity "OElig" "\\OE{}" False "Œ" "OE" "OE" "Œ", Entity "oelig" "\\oe{}" False "œ" "oe" "oe" "œ", Entity "Scaron" "\\v{S}" False "Š" "S" "S" "Š", Entity "scaron" "\\v{s}" False "š" "s" "s" "š", Entity "szlig" "\\ss{}" False "ß" "ss" "ß" "ß", Entity "Ugrave" "\\`{U}" False "Ù" "U" "Ù" "Ù", Entity "ugrave" "\\`{u}" False "ù" "u" "ù" "ù", Entity "Uacute" "\\'{U}" False "Ú" "U" "Ú" "Ú", Entity "uacute" "\\'{u}" False "ú" "u" "ú" "ú", Entity "Ucirc" "\\^{U}" False "Û" "U" "Û" "Û", Entity "ucirc" "\\^{u}" False "û" "u" "û" "û", Entity "Uuml" "\\\"{U}" False "Ü" "Ue" "Ü" "Ü", Entity "uuml" "\\\"{u}" False "ü" "ue" "ü" "ü", Entity "Yacute" "\\'{Y}" False "Ý" "Y" "Ý" "Ý", Entity "yacute" "\\'{y}" False "ý" "y" "ý" "ý", Entity "Yuml" "\\\"{Y}" False "Ÿ" "Y" "Y" "Ÿ", Entity "yuml" "\\\"{y}" False "ÿ" "y" "ÿ" "ÿ", Entity "fnof" "\\textit{f}" False "ƒ" "f" "f" "ƒ", Entity "real" "\\Re" True "ℜ" "R" "R" "ℜ", Entity "image" "\\Im" True "ℑ" "I" "I" "ℑ", Entity "weierp" "\\wp" True "℘" "P" "P" "℘", Entity "ell" "\\ell" True "ℓ" "ell" "ell" "ℓ", Entity "imath" "\\imath" True "ı" "[dotless i]" "dotless i" "ı", Entity "jmath" "\\jmath" True "ȷ" "[dotless j]" "dotless j" "ȷ", Entity "Alpha" "A" False "Α" "Alpha" "Alpha" "Α", Entity "alpha" "\\alpha" True "α" "alpha" "alpha" "α", Entity "Beta" "B" False "Β" "Beta" "Beta" "Β", Entity "beta" "\\beta" True "β" "beta" "beta" "β", Entity "Gamma" "\\Gamma" True "Γ" "Gamma" "Gamma" "Γ", Entity "gamma" "\\gamma" True "γ" "gamma" "gamma" "γ", Entity "Delta" "\\Delta" True "Δ" "Delta" "Delta" "Δ", Entity "delta" "\\delta" True "δ" "delta" "delta" "δ", Entity "Epsilon" "E" False "Ε" "Epsilon" "Epsilon" "Ε", Entity "epsilon" "\\epsilon" True "ε" "epsilon" "epsilon" "ε", Entity "varepsilon" "\\varepsilon" True "ε" "varepsilon" "varepsilon" "ε", Entity "Zeta" "Z" False "Ζ" "Zeta" "Zeta" "Ζ", Entity "zeta" "\\zeta" True "ζ" "zeta" "zeta" "ζ", Entity "Eta" "H" False "Η" "Eta" "Eta" "Η", Entity "eta" "\\eta" True "η" "eta" "eta" "η", Entity "Theta" "\\Theta" True "Θ" "Theta" "Theta" "Θ", Entity "theta" "\\theta" True "θ" "theta" "theta" "θ", Entity "thetasym" "\\vartheta" True "ϑ" "theta" "theta" "ϑ", Entity "vartheta" "\\vartheta" True "ϑ" "theta" "theta" "ϑ", Entity "Iota" "I" False "Ι" "Iota" "Iota" "Ι", Entity "iota" "\\iota" True "ι" "iota" "iota" "ι", Entity "Kappa" "K" False "Κ" "Kappa" "Kappa" "Κ", Entity "kappa" "\\kappa" True "κ" "kappa" "kappa" "κ", Entity "Lambda" "\\Lambda" True "Λ" "Lambda" "Lambda" "Λ", Entity "lambda" "\\lambda" True "λ" "lambda" "lambda" "λ", Entity "Mu" "M" False "Μ" "Mu" "Mu" "Μ", Entity "mu" "\\mu" True "μ" "mu" "mu" "μ", Entity "nu" "\\nu" True "ν" "nu" "nu" "ν", Entity "Nu" "N" False "Ν" "Nu" "Nu" "Ν", Entity "Xi" "\\Xi" True "Ξ" "Xi" "Xi" "Ξ", Entity "xi" "\\xi" True "ξ" "xi" "xi" "ξ", Entity "Omicron" "O" False "Ο" "Omicron" "Omicron" "Ο", Entity "omicron" "\\textit{o}" False "ο" "omicron" "omicron" "ο", Entity "Pi" "\\Pi" True "Π" "Pi" "Pi" "Π", Entity "pi" "\\pi" True "π" "pi" "pi" "π", Entity "Rho" "P" False "Ρ" "Rho" "Rho" "Ρ", Entity "rho" "\\rho" True "ρ" "rho" "rho" "ρ", Entity "Sigma" "\\Sigma" True "Σ" "Sigma" "Sigma" "Σ", Entity "sigma" "\\sigma" True "σ" "sigma" "sigma" "σ", Entity "sigmaf" "\\varsigma" True "ς" "sigmaf" "sigmaf" "ς", Entity "varsigma" "\\varsigma" True "ς" "varsigma" "varsigma" "ς", Entity "Tau" "T" False "Τ" "Tau" "Tau" "Τ", Entity "Upsilon" "\\Upsilon" True "Υ" "Upsilon" "Upsilon" "Υ", Entity "upsih" "\\Upsilon" True "ϒ" "upsilon" "upsilon" "ϒ", Entity "upsilon" "\\upsilon" True "υ" "upsilon" "upsilon" "υ", Entity "Phi" "\\Phi" True "Φ" "Phi" "Phi" "Φ", Entity "phi" "\\phi" True "φ" "phi" "phi" "ɸ", Entity "varphi" "\\varphi" True "ϕ" "varphi" "varphi" "φ", Entity "Chi" "X" False "Χ" "Chi" "Chi" "Χ", Entity "chi" "\\chi" True "χ" "chi" "chi" "χ", Entity "acutex" "\\acute x" True "´x" "'x" "'x" "𝑥́", Entity "Psi" "\\Psi" True "Ψ" "Psi" "Psi" "Ψ", Entity "psi" "\\psi" True "ψ" "psi" "psi" "ψ", Entity "tau" "\\tau" True "τ" "tau" "tau" "τ", Entity "Omega" "\\Omega" True "Ω" "Omega" "Omega" "Ω", Entity "omega" "\\omega" True "ω" "omega" "omega" "ω", Entity "piv" "\\varpi" True "ϖ" "omega-pi" "omega-pi" "ϖ", Entity "varpi" "\\varpi" True "ϖ" "omega-pi" "omega-pi" "ϖ", Entity "partial" "\\partial" True "∂" "[partial differential]" "[partial differential]" "∂", Entity "alefsym" "\\aleph" True "ℵ" "aleph" "aleph" "ℵ", Entity "aleph" "\\aleph" True "ℵ" "aleph" "aleph" "ℵ", Entity "gimel" "\\gimel" True "ℷ" "gimel" "gimel" "ℷ", Entity "beth" "\\beth" True "ℶ" "beth" "beth" "ב", Entity "dalet" "\\daleth" True "ℸ" "dalet" "dalet" "ד", Entity "ETH" "\\DH{}" False "Ð" "D" "Ð" "Ð", Entity "eth" "\\dh{}" False "ð" "dh" "ð" "ð", Entity "THORN" "\\TH{}" False "Þ" "TH" "Þ" "Þ", Entity "thorn" "\\th{}" False "þ" "th" "þ" "þ", Entity "dots" "\\dots{}" False "…" "..." "..." "…", Entity "cdots" "\\cdots{}" True "⋯" "..." "..." "⋯", Entity "hellip" "\\dots{}" False "…" "..." "..." "…", Entity "middot" "\\textperiodcentered{}" False "·" "." "·" "·", Entity "iexcl" "!`" False "¡" "!" "¡" "¡", Entity "iquest" "?`" False "¿" "?" "¿" "¿", Entity "shy" "\\-" False "­" "" "" "", Entity "ndash" "--" False "–" "-" "-" "–", Entity "mdash" "---" False "—" "--" "--" "—", Entity "quot" "\\textquotedbl{}" False """ "\"" "\"" "\"", Entity "acute" "\\textasciiacute{}" False "´" "'" "´" "´", Entity "ldquo" "\\textquotedblleft{}" False "“" "\"" "\"" "“", Entity "rdquo" "\\textquotedblright{}" False "”" "\"" "\"" "”", Entity "bdquo" "\\quotedblbase{}" False "„" "\"" "\"" "„", Entity "lsquo" "\\textquoteleft{}" False "‘" "`" "`" "‘", Entity "rsquo" "\\textquoteright{}" False "’" "'" "'" "’", Entity "sbquo" "\\quotesinglbase{}" False "‚" "," "," "‚", Entity "laquo" "\\guillemotleft{}" False "«" "<<" "«" "«", Entity "raquo" "\\guillemotright{}" False "»" ">>" "»" "»", Entity "lsaquo" "\\guilsinglleft{}" False "‹" "<" "<" "‹", Entity "rsaquo" "\\guilsinglright{}" False "›" ">" ">" "›", Entity "circ" "\\^{}" False "ˆ" "^" "^" "∘", Entity "vert" "\\vert{}" True "|" "|" "|" "|", Entity "vbar" "|" False "|" "|" "|" "|", Entity "brvbar" "\\textbrokenbar{}" False "¦" "|" "¦" "¦", Entity "S" "\\S" False "§" "paragraph" "§" "§", Entity "sect" "\\S" False "§" "paragraph" "§" "§", Entity "amp" "\\&" False "&" "&" "&" "&", Entity "lt" "\\textless{}" False "<" "<" "<" "<", Entity "gt" "\\textgreater{}" False ">" ">" ">" ">", Entity "tilde" "\\textasciitilde{}" False "~" "~" "~" "~", Entity "slash" "/" False "/" "/" "/" "/", Entity "plus" "+" False "+" "+" "+" "+", Entity "under" "\\_" False "_" "_" "_" "_", Entity "equal" "=" False "=" "=" "=" "=", Entity "asciicirc" "\\textasciicircum{}" False "^" "^" "^" "^", Entity "dagger" "\\textdagger{}" False "†" "[dagger]" "[dagger]" "†", Entity "dag" "\\dag{}" False "†" "[dagger]" "[dagger]" "†", Entity "Dagger" "\\textdaggerdbl{}" False "‡" "[doubledagger]" "[doubledagger]" "‡", Entity "ddag" "\\ddag{}" False "‡" "[doubledagger]" "[doubledagger]" "‡", Entity "nbsp" "~" False " " " " " " " ", Entity "ensp" "\\hspace*{.5em}" False " " " " " " " ", Entity "emsp" "\\hspace*{1em}" False " " " " " " " ", Entity "thinsp" "\\hspace*{.2em}" False " " " " " " " ", Entity "curren" "\\textcurrency{}" False "¤" "curr." "¤" "¤", Entity "cent" "\\textcent{}" False "¢" "cent" "¢" "¢", Entity "pound" "\\pounds{}" False "£" "pound" "£" "£", Entity "yen" "\\textyen{}" False "¥" "yen" "¥" "¥", Entity "euro" "\\texteuro{}" False "€" "EUR" "EUR" "€", Entity "EUR" "\\texteuro{}" False "€" "EUR" "EUR" "€", Entity "dollar" "\\$" False "$" "$" "$" "$", Entity "USD" "\\$" False "$" "$" "$" "$", Entity "copy" "\\textcopyright{}" False "©" "(c)" "©" "©", Entity "reg" "\\textregistered{}" False "®" "(r)" "®" "®", Entity "trade" "\\texttrademark{}" False "™" "TM" "TM" "™", Entity "minus" "\\minus" True "−" "-" "-" "−", Entity "pm" "\\textpm{}" False "±" "+-" "±" "±", Entity "plusmn" "\\textpm{}" False "±" "+-" "±" "±", Entity "times" "\\texttimes{}" False "×" "*" "×" "×", Entity "frasl" "/" False "⁄" "/" "/" "⁄", Entity "colon" "\\colon" True ":" ":" ":" ":", Entity "div" "\\textdiv{}" False "÷" "/" "÷" "÷", Entity "frac12" "\\textonehalf{}" False "½" "1/2" "½" "½", Entity "frac14" "\\textonequarter{}" False "¼" "1/4" "¼" "¼", Entity "frac34" "\\textthreequarters{}" False "¾" "3/4" "¾" "¾", Entity "permil" "\\textperthousand{}" False "‰" "per thousand" "per thousand" "‰", Entity "sup1" "\\textonesuperior{}" False "¹" "^1" "¹" "¹", Entity "sup2" "\\texttwosuperior{}" False "²" "^2" "²" "²", Entity "sup3" "\\textthreesuperior{}" False "³" "^3" "³" "³", Entity "radic" "\\sqrt{\\,}" True "√" "[square root]" "[square root]" "√", Entity "sum" "\\sum" True "∑" "[sum]" "[sum]" "∑", Entity "prod" "\\prod" True "∏" "[product]" "[n-ary product]" "∏", Entity "micro" "\\textmu{}" False "µ" "micro" "µ" "µ", Entity "macr" "\\textasciimacron{}" False "¯" "[macron]" "¯" "¯", Entity "deg" "\\textdegree{}" False "°" "degree" "°" "°", Entity "prime" "\\prime" True "′" "'" "'" "′", Entity "Prime" "\\prime{}\\prime" True "″" "''" "''" "″", Entity "infin" "\\infty" True "∞" "[infinity]" "[infinity]" "∞", Entity "infty" "\\infty" True "∞" "[infinity]" "[infinity]" "∞", Entity "prop" "\\propto" True "∝" "[proportional to]" "[proportional to]" "∝", Entity "propto" "\\propto" True "∝" "[proportional to]" "[proportional to]" "∝", Entity "not" "\\textlnot{}" False "¬" "[angled dash]" "¬" "¬", Entity "neg" "\\neg{}" True "¬" "[angled dash]" "¬" "¬", Entity "land" "\\land" True "∧" "[logical and]" "[logical and]" "∧", Entity "wedge" "\\wedge" True "∧" "[logical and]" "[logical and]" "∧", Entity "lor" "\\lor" True "∨" "[logical or]" "[logical or]" "∨", Entity "vee" "\\vee" True "∨" "[logical or]" "[logical or]" "∨", Entity "cap" "\\cap" True "∩" "[intersection]" "[intersection]" "∩", Entity "cup" "\\cup" True "∪" "[union]" "[union]" "∪", Entity "smile" "\\smile" True "⌣" "[cup product]" "[cup product]" "⌣", Entity "frown" "\\frown" True "⌢" "[Cap product]" "[cap product]" "⌢", Entity "int" "\\int" True "∫" "[integral]" "[integral]" "∫", Entity "therefore" "\\therefore" True "∴" "[therefore]" "[therefore]" "∴", Entity "there4" "\\therefore" True "∴" "[therefore]" "[therefore]" "∴", Entity "because" "\\because" True "∵" "[because]" "[because]" "∵", Entity "sim" "\\sim" True "∼" "~" "~" "∼", Entity "cong" "\\cong" True "≅" "[approx. equal to]" "[approx. equal to]" "≅", Entity "simeq" "\\simeq" True "≅" "[approx. equal to]" "[approx. equal to]" "≅", Entity "asymp" "\\asymp" True "≈" "[almost equal to]" "[almost equal to]" "≈", Entity "approx" "\\approx" True "≈" "[almost equal to]" "[almost equal to]" "≈", Entity "ne" "\\ne" True "≠" "[not equal to]" "[not equal to]" "≠", Entity "neq" "\\neq" True "≠" "[not equal to]" "[not equal to]" "≠", Entity "equiv" "\\equiv" True "≡" "[identical to]" "[identical to]" "≡", Entity "triangleq" "\\triangleq" True "≜" "[defined to]" "[defined to]" "≜", Entity "le" "\\le" True "≤" "<=" "<=" "≤", Entity "leq" "\\le" True "≤" "<=" "<=" "≤", Entity "ge" "\\ge" True "≥" ">=" ">=" "≥", Entity "geq" "\\ge" True "≥" ">=" ">=" "≥", Entity "lessgtr" "\\lessgtr" True "≶" "[less than or greater than]" "[less than or greater than]" "≶", Entity "lesseqgtr" "\\lesseqgtr" True "⋚" "[less than or equal or greater than or equal]" "[less than or equal or greater than or equal]" "⋚", Entity "ll" "\\ll" True "≪" "<<" "<<" "≪", Entity "Ll" "\\lll" True "⋘" "<<<" "<<<" "⋘", Entity "lll" "\\lll" True "⋘" "<<<" "<<<" "⋘", Entity "gg" "\\gg" True "≫" ">>" ">>" "≫", Entity "Gg" "\\ggg" True "⋙" ">>>" ">>>" "⋙", Entity "ggg" "\\ggg" True "⋙" ">>>" ">>>" "⋙", Entity "prec" "\\prec" True "≺" "[precedes]" "[precedes]" "≺", Entity "preceq" "\\preceq" True "≼" "[precedes or equal]" "[precedes or equal]" "≼", Entity "preccurlyeq" "\\preccurlyeq" True "≼" "[precedes or equal]" "[precedes or equal]" "≼", Entity "succ" "\\succ" True "≻" "[succeeds]" "[succeeds]" "≻", Entity "succeq" "\\succeq" True "≽" "[succeeds or equal]" "[succeeds or equal]" "≽", Entity "succcurlyeq" "\\succcurlyeq" True "≽" "[succeeds or equal]" "[succeeds or equal]" "≽", Entity "sub" "\\subset" True "⊂" "[subset of]" "[subset of]" "⊂", Entity "subset" "\\subset" True "⊂" "[subset of]" "[subset of]" "⊂", Entity "sup" "\\supset" True "⊃" "[superset of]" "[superset of]" "⊃", Entity "supset" "\\supset" True "⊃" "[superset of]" "[superset of]" "⊃", Entity "nsub" "\\not\\subset" True "⊄" "[not a subset of]" "[not a subset of" "⊄", Entity "sube" "\\subseteq" True "⊆" "[subset of or equal to]" "[subset of or equal to]" "⊆", Entity "nsup" "\\not\\supset" True "⊅" "[not a superset of]" "[not a superset of]" "⊅", Entity "supe" "\\supseteq" True "⊇" "[superset of or equal to]" "[superset of or equal to]" "⊇", Entity "setminus" "\\setminus" True "∖" "\\" " \\" "⧵", Entity "forall" "\\forall" True "∀" "[for all]" "[for all]" "∀", Entity "exist" "\\exists" True "∃" "[there exists]" "[there exists]" "∃", Entity "exists" "\\exists" True "∃" "[there exists]" "[there exists]" "∃", Entity "nexist" "\\nexists" True "∃" "[there does not exists]" "[there does not exists]" "∄", Entity "nexists" "\\nexists" True "∃" "[there does not exists]" "[there does not exists]" "∄", Entity "empty" "\\emptyset" True "∅" "[empty set]" "[empty set]" "∅", Entity "emptyset" "\\emptyset" True "∅" "[empty set]" "[empty set]" "∅", Entity "isin" "\\in" True "∈" "[element of]" "[element of]" "∈", Entity "in" "\\in" True "∈" "[element of]" "[element of]" "∈", Entity "notin" "\\notin" True "∉" "[not an element of]" "[not an element of]" "∉", Entity "ni" "\\ni" True "∋" "[contains as member]" "[contains as member]" "∋", Entity "nabla" "\\nabla" True "∇" "[nabla]" "[nabla]" "∇", Entity "ang" "\\angle" True "∠" "[angle]" "[angle]" "∠", Entity "angle" "\\angle" True "∠" "[angle]" "[angle]" "∠", Entity "perp" "\\perp" True "⊥" "[up tack]" "[up tack]" "⊥", Entity "parallel" "\\parallel" True "∥" "||" "||" "∥", Entity "sdot" "\\cdot" True "⋅" "[dot]" "[dot]" "⋅", Entity "cdot" "\\cdot" True "⋅" "[dot]" "[dot]" "⋅", Entity "lceil" "\\lceil" True "⌈" "[left ceiling]" "[left ceiling]" "⌈", Entity "rceil" "\\rceil" True "⌉" "[right ceiling]" "[right ceiling]" "⌉", Entity "lfloor" "\\lfloor" True "⌊" "[left floor]" "[left floor]" "⌊", Entity "rfloor" "\\rfloor" True "⌋" "[right floor]" "[right floor]" "⌋", Entity "lang" "\\langle" True "⟨" "<" "<" "⟨", Entity "rang" "\\rangle" True "⟩" ">" ">" "⟩", Entity "langle" "\\langle" True "⟨" "<" "<" "⟨", Entity "rangle" "\\rangle" True "⟩" ">" ">" "⟩", Entity "hbar" "\\hbar" True "ℏ" "hbar" "hbar" "ℏ", Entity "mho" "\\mho" True "℧" "mho" "mho" "℧", Entity "larr" "\\leftarrow" True "←" "<-" "<-" "←", Entity "leftarrow" "\\leftarrow" True "←" "<-" "<-" "←", Entity "gets" "\\gets" True "←" "<-" "<-" "←", Entity "lArr" "\\Leftarrow" True "⇐" "<=" "<=" "⇐", Entity "Leftarrow" "\\Leftarrow" True "⇐" "<=" "<=" "⇐", Entity "uarr" "\\uparrow" True "↑" "[uparrow]" "[uparrow]" "↑", Entity "uparrow" "\\uparrow" True "↑" "[uparrow]" "[uparrow]" "↑", Entity "uArr" "\\Uparrow" True "⇑" "[dbluparrow]" "[dbluparrow]" "⇑", Entity "Uparrow" "\\Uparrow" True "⇑" "[dbluparrow]" "[dbluparrow]" "⇑", Entity "rarr" "\\rightarrow" True "→" "->" "->" "→", Entity "to" "\\to" True "→" "->" "->" "→", Entity "rightarrow" "\\rightarrow" True "→" "->" "->" "→", Entity "rArr" "\\Rightarrow" True "⇒" "=>" "=>" "⇒", Entity "Rightarrow" "\\Rightarrow" True "⇒" "=>" "=>" "⇒", Entity "darr" "\\downarrow" True "↓" "[downarrow]" "[downarrow]" "↓", Entity "downarrow" "\\downarrow" True "↓" "[downarrow]" "[downarrow]" "↓", Entity "dArr" "\\Downarrow" True "⇓" "[dbldownarrow]" "[dbldownarrow]" "⇓", Entity "Downarrow" "\\Downarrow" True "⇓" "[dbldownarrow]" "[dbldownarrow]" "⇓", Entity "harr" "\\leftrightarrow" True "↔" "<->" "<->" "↔", Entity "leftrightarrow" "\\leftrightarrow" True "↔" "<->" "<->" "↔", Entity "hArr" "\\Leftrightarrow" True "⇔" "<=>" "<=>" "⇔", Entity "Leftrightarrow" "\\Leftrightarrow" True "⇔" "<=>" "<=>" "⇔", Entity "crarr" "\\hookleftarrow" True "↵" "<-'" "<-'" "↵", Entity "hookleftarrow" "\\hookleftarrow" True "↵" "<-'" "<-'" "↵", Entity "arccos" "\\arccos" True "arccos" "arccos" "arccos" "arccos", Entity "arcsin" "\\arcsin" True "arcsin" "arcsin" "arcsin" "arcsin", Entity "arctan" "\\arctan" True "arctan" "arctan" "arctan" "arctan", Entity "arg" "\\arg" True "arg" "arg" "arg" "arg", Entity "cos" "\\cos" True "cos" "cos" "cos" "cos", Entity "cosh" "\\cosh" True "cosh" "cosh" "cosh" "cosh", Entity "cot" "\\cot" True "cot" "cot" "cot" "cot", Entity "coth" "\\coth" True "coth" "coth" "coth" "coth", Entity "csc" "\\csc" True "csc" "csc" "csc" "csc", Entity "deg" "\\deg" True "°" "deg" "deg" "deg", Entity "det" "\\det" True "det" "det" "det" "det", Entity "dim" "\\dim" True "dim" "dim" "dim" "dim", Entity "exp" "\\exp" True "exp" "exp" "exp" "exp", Entity "gcd" "\\gcd" True "gcd" "gcd" "gcd" "gcd", Entity "hom" "\\hom" True "hom" "hom" "hom" "hom", Entity "inf" "\\inf" True "inf" "inf" "inf" "inf", Entity "ker" "\\ker" True "ker" "ker" "ker" "ker", Entity "lg" "\\lg" True "lg" "lg" "lg" "lg", Entity "lim" "\\lim" True "lim" "lim" "lim" "lim", Entity "liminf" "\\liminf" True "liminf" "liminf" "liminf" "liminf", Entity "limsup" "\\limsup" True "limsup" "limsup" "limsup" "limsup", Entity "ln" "\\ln" True "ln" "ln" "ln" "ln", Entity "log" "\\log" True "log" "log" "log" "log", Entity "max" "\\max" True "max" "max" "max" "max", Entity "min" "\\min" True "min" "min" "min" "min", Entity "Pr" "\\Pr" True "Pr" "Pr" "Pr" "Pr", Entity "sec" "\\sec" True "sec" "sec" "sec" "sec", Entity "sin" "\\sin" True "sin" "sin" "sin" "sin", Entity "sinh" "\\sinh" True "sinh" "sinh" "sinh" "sinh", Entity "sup" "\\sup" True "⊃" "sup" "sup" "sup", Entity "tan" "\\tan" True "tan" "tan" "tan" "tan", Entity "tanh" "\\tanh" True "tanh" "tanh" "tanh" "tanh", Entity "bull" "\\textbullet{}" False "•" "*" "*" "•", Entity "bullet" "\\textbullet{}" False "•" "*" "*" "•", Entity "star" "\\star" True "*" "*" "*" "⋆", Entity "lowast" "\\ast" True "∗" "*" "*" "∗", Entity "ast" "\\ast" True "∗" "*" "*" "*", Entity "odot" "\\odot" True "o" "[circled dot]" "[circled dot]" "ʘ", Entity "oplus" "\\oplus" True "⊕" "[circled plus]" "[circled plus]" "⊕", Entity "otimes" "\\otimes" True "⊗" "[circled times]" "[circled times]" "⊗", Entity "check" "\\checkmark" True "✓" "[checkmark]" "[checkmark]" "✓", Entity "checkmark" "\\checkmark" True "✓" "[checkmark]" "[checkmark]" "✓", Entity "para" "\\P{}" False "¶" "[pilcrow]" "¶" "¶", Entity "ordf" "\\textordfeminine{}" False "ª" "_a_" "ª" "ª", Entity "ordm" "\\textordmasculine{}" False "º" "_o_" "º" "º", Entity "cedil" "\\c{}" False "¸" "[cedilla]" "¸" "¸", Entity "oline" "\\overline{~}" True "‾" "[overline]" "¯" "‾", Entity "uml" "\\textasciidieresis{}" False "¨" "[diaeresis]" "¨" "¨", Entity "zwnj" "\\/{}" False "‌" "" "" "\8204", Entity "zwj" "" False "‍" "" "" "\8205", Entity "lrm" "" False "‎" "" "" "\8206", Entity "rlm" "" False "‏" "" "" "\8207", Entity "smiley" "\\ddot\\smile" True "☺" ":-)" ":-)" "☺", Entity "blacksmile" "\\ddot\\smile" True "☻" ":-)" ":-)" "☻", Entity "sad" "\\ddot\\frown" True "☹" ":-(" ":-(" "☹", Entity "frowny" "\\ddot\\frown" True "☹" ":-(" ":-(" "☹", Entity "clubs" "\\clubsuit" True "♣" "[clubs]" "[clubs]" "♣", Entity "clubsuit" "\\clubsuit" True "♣" "[clubs]" "[clubs]" "♣", Entity "spades" "\\spadesuit" True "♠" "[spades]" "[spades]" "♠", Entity "spadesuit" "\\spadesuit" True "♠" "[spades]" "[spades]" "♠", Entity "hearts" "\\heartsuit" True "♥" "[hearts]" "[hearts]" "♥", Entity "heartsuit" "\\heartsuit" True "♥" "[hearts]" "[hearts]" "♥", Entity "diams" "\\diamondsuit" True "♦" "[diamonds]" "[diamonds]" "◆", Entity "diamondsuit" "\\diamondsuit" True "♦" "[diamonds]" "[diamonds]" "◆", Entity "diamond" "\\diamondsuit" True "⋄" "[diamond]" "[diamond]" "◆", Entity "Diamond" "\\diamondsuit" True "⋄" "[diamond]" "[diamond]" "◆", Entity "loz" "\\lozenge" True "◊" "[lozenge]" "[lozenge]" "⧫", Entity "_ " "\\hspace*{0.5em}" False " " " " " " " ", Entity "_ " "\\hspace*{1.0em}" False "  " " " " " "  ", Entity "_ " "\\hspace*{1.5em}" False "   " " " " " "   ", Entity "_ " "\\hspace*{2.0em}" False "    " " " " " "    ", Entity "_ " "\\hspace*{2.5em}" False "     " " " " " "     ", Entity "_ " "\\hspace*{3.0em}" False "      " " " " " "      ", Entity "_ " "\\hspace*{3.5em}" False "       " " " " " "       ", Entity "_ " "\\hspace*{4.0em}" False "        " " " " " "        ", Entity "_ " "\\hspace*{4.5em}" False "         " " " " " "         ", Entity "_ " "\\hspace*{5.0em}" False "          " " " " " "          ", Entity "_ " "\\hspace*{5.5em}" False "           " " " " " "           ", Entity "_ " "\\hspace*{6.0em}" False "            " " " " " "            ", Entity "_ " "\\hspace*{6.5em}" False "             " " " " " "             ", Entity "_ " "\\hspace*{7.0em}" False "              " " " " " "              ", Entity "_ " "\\hspace*{7.5em}" False "               " " " " " "               ", Entity "_ " "\\hspace*{8.0em}" False "                " " " " " "                ", Entity "_ " "\\hspace*{8.5em}" False "                 " " " " " "                 ", Entity "_ " "\\hspace*{9.0em}" False "                  " " " " " "                  ", Entity "_ " "\\hspace*{9.5em}" False "                   " " " " " "                   ", Entity "_ " "\\hspace*{10.0em}" False "                    " " " " " "                    " ]