From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: =?UTF-8?B?UmU6IElzIHRoZXJlIGEgKk9yZyBQREYgTGFUZVggT3V0cHV0KiBi?= =?UTF-8?B?dWZmZXLCoD8=?= Date: Mon, 03 Oct 2016 16:08:22 +0200 Message-ID: <87oa31fru1.fsf@free.fr> References: <87mvipt7qy.fsf@free.fr> <87h98xrq9q.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38173) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1br3v2-0000jY-TP for emacs-orgmode@gnu.org; Mon, 03 Oct 2016 10:08:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1br3ux-0000Z1-8C for emacs-orgmode@gnu.org; Mon, 03 Oct 2016 10:08:36 -0400 Received: from smtp4-g21.free.fr ([212.27.42.4]:38423) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1br3ux-0000Ym-2d for emacs-orgmode@gnu.org; Mon, 03 Oct 2016 10:08:31 -0400 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Nick Dokos Cc: emacs-orgmode@gnu.org Nick Dokos writes: > No, it should be present: it is created when you export to PDF through > LaTeX (it is created by org-latex-compile which is called by > org-latex-export-to-pdf). I just tried a (successful, but I don't > think it matters) export and was able to visit it afterwards. I found it, but only when publishing a project synchronously. Actually that's not surprising since in this case it's another emacs process that's running but the message about the *Org PDF LaTeX Output* is then misleading. Here is a MWE[1]: --8<---------------cut here---------------start------------->8--- #+LATEX_HEADER:\RequirePackage{nosuchpackage} #+begin_src emacs-lisp :exports none (add-to-list 'load-path "~/git-repositories/org-mode/lisp") (add-to-list 'load-path "~/git-repositories/org-mode/contrib/lisp") (org-reload) (require 'ox) (require 'ox-latex) (setq org-export-in-background t) (setq org-export-async-init-file "~/tmp/test-init.el") (setq org-publish-project-alist `(("test" :base-directory "./" :publishing-directory "./" :publishing-function org-latex-publish-to-pdf :exclude ".*" :include ,(list (file-name-nondirectory buffer-file-name)) ))) #+end_src --8<---------------cut here---------------end--------------->8--- with ~/tmp/test-init.el: --8<---------------cut here---------------start------------->8--- (add-to-list 'load-path "~/git-repositories/org-mode/lisp") (add-to-list 'load-path "~/git-repositories/org-mode/contrib/lisp") (require 'org) (require 'ox) --8<---------------cut here---------------end--------------->8--- Julien. [1] Actually it's not really working when running emacs -Q: there are some error messages about for instance org-link-set-parameters which I can't iron out but I don't think it's relevant to the problem exhibited here.