From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Alexander Gerds Subject: latex listings number-lines problems with new exporter Date: Tue, 05 Mar 2013 10:59:18 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:36357) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCoed-0008Pj-FU for emacs-orgmode@gnu.org; Tue, 05 Mar 2013 04:59:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UCoeZ-00086w-KU for emacs-orgmode@gnu.org; Tue, 05 Mar 2013 04:59:27 -0500 Received: from mail-ee0-f53.google.com ([74.125.83.53]:35266) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UCoeZ-00086l-FJ for emacs-orgmode@gnu.org; Tue, 05 Mar 2013 04:59:23 -0500 Received: by mail-ee0-f53.google.com with SMTP id e53so4619509eek.40 for ; Tue, 05 Mar 2013 01:59:21 -0800 (PST) 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 using org-mode "7.9.3f" and the new exporter I was desperately trying to get line numbers back for exported R code blocks using the latex listing package. first I tried (setq org-latex-listings-options '(("basicstyle" "\\small") ("numbers" "left"))) which gives ,---- | \lstset{basicstyle=\small,numbers=left,language=R,numbers=none} `---- that this is possible seems sub-optimal :) some debugging led me via org-latex-src-block to org-element-src-block-parser which indicated adding a switch "-n" behind to the scr-block: ,---- | #+BEGIN_SRC R -n :results output raw :exports both :session *R* :cache yes this works and has a new feature (switch +n) which allows numbering to be continued in subsequent blocks. Now, I would like to set numbers on globally or buffer-local for all blocks. But is it possible to set a switch globally? I think parameters can still be set with an appropriate #+PROPERTY: statement!? whatever the answer, it would be nice if this feature was mentioned in the help string of org-latex-listing-options. regards, Thomas