summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2019-09-07 16:51:27 -0400
committerKyle Meyer <kyle@kyleam.com>2019-09-07 16:51:27 -0400
commit1130e5bc892d005f595958c59e7bebfaa806fd46 (patch)
tree730323b936b6e49bc272fd7bc1c776a3198c6860
parent1f0a0cd4a05a380c199d43a449b455d62782f79c (diff)
downloadorg-mode-1130e5bc892d005f595958c59e7bebfaa806fd46.tar.gz
org.texi: Generate from org-manual.org
$ emacs --batch -Q -L lisp --eval "(require 'ox-texinfo)" \ --visit doc/org-manual.org --eval "(org-texinfo-export-to-texinfo)"
-rw-r--r--doc/org.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/org.texi b/doc/org.texi
index ddf8ce9..a59a38d 100644
--- a/doc/org.texi
+++ b/doc/org.texi
@@ -13776,13 +13776,13 @@ for long descriptions.
In order to be effective, the @samp{babel} or @samp{polyglossia}
packages---according to the @LaTeX{} compiler used---must be loaded
with the appropriate language as argument. This can be
-accomplished by modifying the @samp{org-latex-package-alist} variable,
+accomplished by modifying the @code{org-latex-packages-alist} variable,
e.g., with the following snippet:
@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 lisp