From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gunnar Wolf Subject: Babel-generated files not part of published projects? Date: Wed, 30 Jan 2013 12:00:31 -0600 Message-ID: <20130130180031.GA44277@gwolf.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:54833) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U0c0r-00062n-6W for emacs-orgmode@gnu.org; Wed, 30 Jan 2013 13:03:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U0c0o-0002Qu-KD for emacs-orgmode@gnu.org; Wed, 30 Jan 2013 13:03:57 -0500 Received: from lafa.iiec.unam.mx ([132.248.72.141]:51334) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U0c0o-0002Qf-F8 for emacs-orgmode@gnu.org; Wed, 30 Jan 2013 13:03:54 -0500 Received: from localhost (localhost.localdomain [127.0.0.1]) by lafa.iiec.unam.mx (Postfix) with ESMTP id D341B92014 for ; Wed, 30 Jan 2013 12:03:52 -0600 (CST) Received: from lafa.iiec.unam.mx ([127.0.0.1]) by localhost (lafa.iiec.unam.mx [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id B2pXGqqEOnwq for ; Wed, 30 Jan 2013 12:03:51 -0600 (CST) Received: from v.gwolf.org (unknown [132.248.72.123]) by lafa.iiec.unam.mx (Postfix) with ESMTP id B58AA76D93 for ; Wed, 30 Jan 2013 12:03:51 -0600 (CST) Content-Disposition: inline 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, I have the following (partial) target as a publishing declaration: (setq org-publish-project-alist '(("notas-html" :base-directory "~/vcs/sistemas_operativos/notas/" :base-extension "org" :publishing-directory "~/vcs/sistemas_operativos/html" :recursive t :publishing-function org-publish-org-to-html :headline-levels 4 :timestamp nil :creator-info nil :todo-keywords nil :html-preamble "" :html-postamble "" :auto-preamble t ) ("notas-pdf" :base-directory "~/vcs/sistemas_operativos/notas/" :base-extension "org" :publishing-directory "~/vcs/sistemas_operativos/pdf" :recursive t :publishing-function org-publish-org-to-pdf :headline-levels 4 :auto-preamble t ) (...) )) And I have several Dot-generated snippets as part of my text, such as this one: #+begin_src dot :file ltxpng/estados_proceso.png digraph G { layout = dot; node [shape = box]; (...) } #+end_src When I export a single file (i.e. with C-c C-e p), the file gets generated with the specified filename and included in the resulting PDF. However, when I do it via org-publish-all (or org-publish-project), the code does not get executed, and the resulting files are missing the diagramas. What am I missing? Thanks,