Nicolas Goaziou <[email protected]> writes:
>> ... I set:
>>
>> (setq org-export-latex-listings 'minted)
>
> You mean `org-latex-listings'. `org-export-latex-listings' belongs to
> the old export framework (like almost all variables with
> "org-export-BACKEND-" prefix).
>
Yes, indeed.
>> (add-to-list 'org-latex-packages-alist '("" "minted"))
>
>> in which case, I end up with a \usepackage{minted} in the preview
>> latex file.
>
> Use:
>
> (add-to-list 'org-latex-packages-alist '("" "minted" nil))
>
> to tell Org not to include the package for previewing snippets.
>
OK, that works - I didn't know about the three-element list
form. Thanks!
Perhaps the docstring for org-latex-listings should include
the three-element list form, with a pointer to the
org-latex-packages-alist doc for more details.
There is also a (perhaps unlikely) scenario where this is not enough:
previewing typeset code where I *want* to use minted:
--8<---------------cut here---------------start------------->8---
* Code
\begin{minted}{c}
printf("Hello world\n");
\end{minted}
--8<---------------cut here---------------end--------------->8---
--
Nick