From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carlos Russo Subject: org-babel, gnuplot and buffer-wide header arguments Date: Wed, 12 Jun 2013 11:21:37 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43317) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmiBd-0000va-9K for emacs-orgmode@gnu.org; Wed, 12 Jun 2013 06:21:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UmiBc-00044A-2K for emacs-orgmode@gnu.org; Wed, 12 Jun 2013 06:21:53 -0400 Received: from plane.gmane.org ([80.91.229.3]:40678) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmiBb-000442-SP for emacs-orgmode@gnu.org; Wed, 12 Jun 2013 06:21:52 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UmiBa-0001ob-QA for emacs-orgmode@gnu.org; Wed, 12 Jun 2013 12:21:50 +0200 Received: from 194.210.232.37 ([194.210.232.37]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 12 Jun 2013 12:21:50 +0200 Received: from mestre.adamastor by 194.210.232.37 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 12 Jun 2013 12:21:50 +0200 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 it seems that org-babel-gnuplot only recognizes a few header arguments. I would like to set the following on top of the buffer: #+PROPERTY: term pdfcairo enhanced mono size 8cm,6cm font "Helvetica" in order to control the appearance of a bunch of figures generated by gnuplot #+begin_src gnuplot :exports result :file file.pdf plot ... #+end_src Basically, I would like to avoid writing the :term property all the time: #+begin_src gnuplot :exports result :file file.pdf :term pdfcairo enhanced mono size 8cm,6cm font "Helvetica" plot ... #+end_src It seems that this requires a modification to ob-gnuplot.el. Any hints on how to do this? Thanks, Carlos