From mboxrd@z Thu Jan 1 00:00:00 1970 From: Manfred Lotz Subject: Re: minted question Date: Tue, 22 Jul 2014 06:23:24 +0200 Message-ID: <20140722062324.7b5964a3@hogwart.bsdlocal.net> References: <20140721213020.73f1c01d@arcor.com> <20140721221453.123bb534@hogwart.bsdlocal.net> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37859) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9Rc0-0005T4-4B for emacs-orgmode@gnu.org; Tue, 22 Jul 2014 00:23:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X9Rbt-0004uw-VL for emacs-orgmode@gnu.org; Tue, 22 Jul 2014 00:23:36 -0400 Received: from mail-in-04.arcor-online.net ([151.189.21.44]:60799) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9Rbt-0004tf-Hs for emacs-orgmode@gnu.org; Tue, 22 Jul 2014 00:23:29 -0400 Received: from mail-in-11-z2.arcor-online.net (mail-in-11-z2.arcor-online.net [151.189.8.28]) by mx.arcor.de (Postfix) with ESMTP id 9781BA9D71 for ; Tue, 22 Jul 2014 06:23:25 +0200 (CEST) Received: from mail-in-04.arcor-online.net (mail-in-04.arcor-online.net [151.189.21.44]) by mail-in-11-z2.arcor-online.net (Postfix) with ESMTP id 92B347FE674 for ; Tue, 22 Jul 2014 06:23:25 +0200 (CEST) Received: from hogwart (p4FFF2E75.dip0.t-ipconnect.de [79.255.46.117]) (Authenticated sender: manfred.lotz@arcor.de) by mail-in-04.arcor-online.net (Postfix) with ESMTPSA id 897F0A9D71 for ; Tue, 22 Jul 2014 06:23:25 +0200 (CEST) Received: from hogwart.bsdlocal.net (localhost.localdomain [127.0.0.1]) by hogwart (Postfix) with ESMTP id 3662A448EB for ; Tue, 22 Jul 2014 06:23:25 +0200 (CEST) In-Reply-To: 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 Thomas, On Mon, 21 Jul 2014 10:48:14 -1000 tsd@tsdye.com (Thomas S. Dye) wrote: > Hi Manfred, > > Manfred Lotz writes: > > > Hi Tom, > > > > On Mon, 21 Jul 2014 09:53:41 -1000 > > tsd@tsdye.com (Thomas S. Dye) wrote: > > > >> Aloha Manfred, > >> > >> You should be able to use attr_latex (untested). > >> > >> Manfred Lotz writes: > >> > >> #+ATTR_LATEX: :options linenos=true frame=single > >> > #+BEGIN_SRC perl > >> > #! /usr/bin/perl > >> > > >> > use strict; > >> > use warnings; > >> > use 5.010; > >> > > >> > say 'hey'; > >> > #+END_SRC > >> > > > > Unfortunately, that doesn't work. > > Yes, when I tried a slightly modified version here I got incorrect > LaTeX output: > > \begin{minted}[,linenos=true, frame=single]{perl} > #! /usr/bin/perl > > use strict; > use warnings; > use 5.010; > > say 'hey'; > \end{minted} > > Note the extraneous comma in the optional argument before "linenos". > > I get what looks to be correct LaTeX export if I set options in the > variable org-latex-minted-options, as shown in the emacs-lisp code > block below. > > #+ATTR_LATEX: :options linenos=true, frame=single > #+BEGIN_SRC perl > #! /usr/bin/perl > > use strict; > use warnings; > use 5.010; > > say 'hey'; > #+END_SRC > > #+begin_src emacs-lisp > (require 'ox-latex) > (add-to-list 'org-latex-packages-alist '("" "minted")) > (setq org-latex-listings 'minted) > (setq org-latex-minted-options > '(("linenos" "true") ("frame" "single"))) > #+end_SEC > > Are you getting an extraneous comma with the #+attr_latex line? > > All the best, > Tom > I do not get any extraneous comma. When using the #+attr_latex line there is just nothing in the latex output. I'm also confused about the emacs-lisp code snippet. I only get it working if I either put it into my .emacs or evaluate it in the scratch buffer. The way you wrote it the lisp code shows up in my document. I messed around with :results but to no avail. -- Best, Manfred