From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Leha Subject: Re: [ANN] ASCII back-end for new export engine Date: Mon, 23 Jan 2012 13:20:14 +0100 Message-ID: <8739b68vb5.fsf@med.uni-goettingen.de> References: <87pqec4xua.fsf@gmail.com> <87bopvjwce.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:58027) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpItH-0000LY-HP for emacs-orgmode@gnu.org; Mon, 23 Jan 2012 07:20:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RpIt7-0008Tb-Fq for emacs-orgmode@gnu.org; Mon, 23 Jan 2012 07:20:51 -0500 Received: from lo.gmane.org ([80.91.229.12]:58417) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpIt7-0008TT-9N for emacs-orgmode@gnu.org; Mon, 23 Jan 2012 07:20:41 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1RpIt5-00036Z-Hg for emacs-orgmode@gnu.org; Mon, 23 Jan 2012 13:20:39 +0100 Received: from genepi110.genepi.med.uni-goettingen.de ([134.76.140.110]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Jan 2012 13:20:39 +0100 Received: from andreas.leha by genepi110.genepi.med.uni-goettingen.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 23 Jan 2012 13:20:39 +0100 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 Nicolas Goaziou writes: [...] > > As a side note, #+label has been deprecated in favor of #+name (though > the former is immediately translated into the latter at parse time). Sorry for hijacking this thread. But this side note is only valid for the new exporter, correct? As it does not yield the expected result in the current LaTeX and odt exporter (the only ones I tried). ====== test.org =========================== * Test name #+caption: Test name #+name: testname #+begin_src R :exports results :results graphics :file foo.png plot(1) #+end_src As can be seen in Figure \ref{testname}... As can be seen in Figure [[testname]] #+caption: Test name 2 #+label: testnametwo #+begin_src R :exports results :results graphics :file bar.png plot(1) #+end_src As can be seen in Figure \ref{testnametwo}... As can be seen in Figure [[testnametwo]] #+caption: Test name 3 #+label: testnamethree #+name: testnamethree #+begin_src R :exports results :results graphics :file bar.png plot(1) #+end_src As can be seen in Figure \ref{testnamethree}... As can be seen in Figure [[testnamethree]] =========================================== Best, Andreas