org-entities: Fix LaTeX macron accent

* lisp/org-entities.el: The macron accent should be produced with the
text accent \=, not \bar which is a maths accent.
This commit is contained in:
TEC 2022-01-10 00:37:30 +08:00
parent dc4b2772e3
commit 071c5e4bf1
Signed by: tec
GPG Key ID: 779591AFDB81F06C
1 changed files with 2 additions and 2 deletions

View File

@ -89,8 +89,8 @@ packages to be loaded, add these packages to `org-latex-packages-alist'."
("aacute" "\\'{a}" nil "á" "a" "á" "á")
("Acirc" "\\^{A}" nil "Â" "A" "Â" "Â")
("acirc" "\\^{a}" nil "â" "a" "â" "â")
("Amacr" "\\bar{A}" nil "Ā" "A" "Ã" "Ã")
("amacr" "\\bar{a}" nil "ā" "a" "ã" "ã")
("Amacr" "\\={A}" nil "Ā" "A" "Ã" "Ã")
("amacr" "\\={a}" nil "ā" "a" "ã" "ã")
("Atilde" "\\~{A}" nil "Ã" "A" "Ã" "Ã")
("atilde" "\\~{a}" nil "ã" "a" "ã" "ã")
("Auml" "\\\"{A}" nil "Ä" "Ae" "Ä" "Ä")