emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [BUG](?) Export to beamet recently stopped working.


From: Fraga, Eric
Subject: Re: [BUG](?) Export to beamet recently stopped working.
Date: Thu, 11 Aug 2022 09:48:24 +0000
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux)

On Thursday, 11 Aug 2022 at 10:00, Emmanuel Charpentier wrote:
> Since about a week, exporting directly to Beamer ceased to work. See
> the attached Minimal.org file :
> Debugger entered--Lisp error: (wrong-type-argument sequencep 108)

org-latex-pdf-process should be a list of strings, not a string.  Also,
I would not use custom-set-variables but simply set the value locally:

#+begin_src emacs-lisp :exports none :results silent
  (require 'ox-beamer)
  (setq-local org-latex-pdf-process
     '("latexmk -shell-escape -f -pdf -%latex -interaction=nonstopmode 
-output-directory=%o %f"))
#+end_src

-- 
: Eric S Fraga, with org release_9.5.4-720-g4db67d in Emacs 29.0.50


reply via email to

[Prev in Thread] Current Thread [Next in Thread]