From 899302ce86014c253d5fc6082a44ed8fd5a9d184 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Fri, 23 Apr 2010 17:22:07 +0200 Subject: [PATCH] Use \land and \lor for logical operators --- lisp/ChangeLog | 3 +++ lisp/org-entities.el | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a14a75d71..713139469 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-04-23 Carsten Dominik + * org-entities.el (org-entities): Use \land and \lor for logical + operators. + * org.el (org-shiftmetaleft, org-shiftmetaright): Call the subtree indentation commands. (org-hidden-tree-error): New defsubst. diff --git a/lisp/org-entities.el b/lisp/org-entities.el index 83b82f001..289b873e3 100644 --- a/lisp/org-entities.el +++ b/lisp/org-entities.el @@ -293,9 +293,9 @@ loaded, add these packages to `org-export-latex-packages-alist'." ("infty" "\\infty" t "∞" "[infinity]" "[infinity]" "∞") ("ang" "\\angle" t "∠" "[angle]" "[angle]" "∠") ("angle" "\\angle" t "∠" "[angle]" "[angle]" "∠") - ("and" "\\wedge" t "∧" "[logical and]" "[logical and]" "∧") + ("land" "\\land" t "∧" "[logical and]" "[logical and]" "∧") ("wedge" "\\wedge" t "∧" "[logical and]" "[logical and]" "∧") - ("or" "\\vee" t "∨" "[logical or]" "[logical or]" "∨") + ("lor" "\\lor" t "∨" "[logical or]" "[logical or]" "∨") ("vee" "\\vee" t "∨" "[logical or]" "[logical or]" "∨") ("cap" "\\cap" t "∩" "[intersection]" "[intersection]" "∩") ("cup" "\\cup" t "∪" "[union]" "[union]" "∪")