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