Browse Source

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>
Nicolas Goaziou 5 years ago
parent
commit
4cb3a37533
1 changed files with 3 additions and 3 deletions
  1. 3 3
      doc/org-manual.org

+ 3 - 3
doc/org-manual.org

@@ -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