Lucas Levrel a écrit :
Le 22 septembre 2008, Pascal Quesseveur a écrit :
Pour ajouter une commande il faut modifier 'TeX-command-list', par
ex.:
,----
| (setq TeX-command-list
| (append TeX-command-list
| '(("Ps to PDF" "ps2pdf -dAutoFilterColorImages#false -dColorImageFilter#/FlateEncode -sPAPERSIZE#a4 %f %s.pdf" TeX-run-command t nil))))
`----
Merci ! Du coup j'ai deux nouvelles questions :
- Pourquoi deux niveaux de parenthèses '(("Ps to PDF" ... nil)) ?
(append '(a b (c) d) '(u v w)) s'évalue en (a b (c) d u v w)
JQCA, O.