From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Schmitt Subject: adding options to the minted environment of exported source blocks in latex Date: Fri, 07 Feb 2014 16:19:13 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45902) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WBnDC-0004wz-U4 for emacs-orgmode@gnu.org; Fri, 07 Feb 2014 10:19:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WBnD2-0004Zt-UY for emacs-orgmode@gnu.org; Fri, 07 Feb 2014 10:19:26 -0500 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:56107) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WBnD2-0004Ze-O1 for emacs-orgmode@gnu.org; Fri, 07 Feb 2014 10:19:16 -0500 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 Hello, I use and abuse the `org-latex-minted-options' when exporting source blocks in latex, but I'm stumped by a usage pattern. I need to change the list of options for one given source block (adding a "belowskip" option to it). I tried the following, but it did not do anything: --8<---------------cut here---------------start------------->8--- #+attr_latex: :belowskip 1cm #+BEGIN_SRC ocaml #load "graphics.cma";; Graphics.open_graph "";; #+END_SRC --8<---------------cut here---------------end--------------->8--- I guess that I can only put some specific options for "attr_latex". Is there a way to put arbitrary options in the exported minted environment? Thanks a lot, Alan