Nicolas Goaziou <[email protected]> writes:
> Does it happen with a specific export back-end or all of them?
I see it with all for of org-(beamer/latex)-export-to-(latex/pdf), but
only if publish.
> Could you provide an ECM?
The following needs to be saved in a file named "test.org", then run C-c
C-c on the elisp source block and C-c e P x beamer
--8<---------------cut here---------------start------------->8---
#+begin_src emacs-lisp :tangle yes :exports none
(setq org-publish-project-alist
`(("beamer"
:base-directory "./"
:publishing-directory "./"
:publishing-function org-latex-publish-to-pdf
:exclude ".*"
:latex-class "article"
:include ("test.org")
)))
#+end_src
#+RESULTS:
| beamer | :base-directory | ./ | :publishing-directory | ./ |
:publishing-function | org-latex-publish-to-latex | :exclude | .* |
:latex-class | article | :include | (test.org) |
* Ceci est un essai
* Ceci est un deuxième heading
--8<---------------cut here---------------end--------------->8---
Julien.