From 1a0344abb741183697cbafd9e6898789630e344c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 4 Oct 2020 14:53:18 +0200 Subject: [PATCH] entities: Fix "empty" entity in LaTeX * lisp/org-entities.el (org-entities): Use \emptyset instead of \empty, which is a Go symbol. Arguably, \O outside of math mode would be a better choice, but use \emptyset for consistency with "emptyset" entity. --- lisp/org-entities.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-entities.el b/lisp/org-entities.el index 5529f77ef..bca0c4338 100644 --- a/lisp/org-entities.el +++ b/lisp/org-entities.el @@ -386,7 +386,7 @@ packages to be loaded, add these packages to `org-latex-packages-alist'." ("exists" "\\exists" t "∃" "[there exists]" "[there exists]" "∃") ("nexist" "\\nexists" t "∃" "[there does not exists]" "[there does not exists]" "∄") ("nexists" "\\nexists" t "∃" "[there does not exists]" "[there does not exists]" "∄") - ("empty" "\\empty" t "∅" "[empty set]" "[empty set]" "∅") + ("empty" "\\emptyset" t "∅" "[empty set]" "[empty set]" "∅") ("emptyset" "\\emptyset" t "∅" "[empty set]" "[empty set]" "∅") ("isin" "\\in" t "∈" "[element of]" "[element of]" "∈") ("in" "\\in" t "∈" "[element of]" "[element of]" "∈")