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)"
This commit is contained in:
Kyle Meyer 2019-09-07 16:51:27 -04:00
parent 1f0a0cd4a0
commit 1130e5bc89
1 changed files with 3 additions and 3 deletions

View File

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