Browse Source

org-entities: Fix "infin" entity

* lisp/org-entities.el (org-entities): Fix infin entity in LaTeX.

Suggested-by: Leandro Facchinetti <me@leafac.com>
Nicolas Goaziou 9 years ago
parent
commit
9600ce5f96
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org-entities.el

+ 1 - 1
lisp/org-entities.el

@@ -326,7 +326,7 @@ packages to be loaded, add these packages to `org-latex-packages-alist'."
      ("deg" "\\textdegree{}" nil "&deg;" "degree" "°" "°")
      ("prime" "\\prime" t "&prime;" "'" "'" "′")
      ("Prime" "\\prime{}\\prime" t "&Prime;" "''" "''" "″")
-     ("infin" "\\propto" t "&infin;" "[infinity]" "[infinity]" "∞")
+     ("infin" "\\infty" t "&infin;" "[infinity]" "[infinity]" "∞")
      ("infty" "\\infty" t "&infin;" "[infinity]" "[infinity]" "∞")
      ("prop" "\\propto" t "&prop;" "[proportional to]" "[proportional to]" "∝")
      ("propto" "\\propto" t "&prop;" "[proportional to]" "[proportional to]" "∝")