org-manual: Fix typo

* doc/org-manual.org (LaTeX specific export settings): Fix typo.

Reported-by: Emmanuel Charpentier <emm.charpentier@free.fr>
<http://lists.gnu.org/r/emacs-orgmode/2019-07/msg00153.html>
This commit is contained in:
Nicolas Goaziou 2019-08-17 15:29:16 +02:00
parent bf8ae63588
commit 4cb3a37533
1 changed files with 3 additions and 3 deletions

View File

@ -12986,13 +12986,13 @@ general options (see [[*Export Settings]]).
In order to be effective, the =babel= or =polyglossia=
packages---according to the LaTeX compiler used---must be loaded
with the appropriate language as argument. This can be
accomplished by modifying the =org-latex-package-alist= variable,
accomplished by modifying the ~org-latex-packages-alist~ variable,
e.g., with the following snippet:
#+begin_src emacs-lisp
(add-to-list org-latex-package-alist
(add-to-list 'org-latex-packages-alist
'("AUTO" "babel" t ("pdflatex")))
(add-to-list org-latex-package-alist
(add-to-list 'org-latex-packages-alist
'("AUTO" "polyglossia" t ("xelatex" "lualatex")))
#+end_src