From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vikas Rawal Subject: Re: exporting cross-references to source block results CORRECTION Date: Thu, 11 Apr 2013 20:54:27 +0530 Message-ID: <20130411152427.GA2546@panahar> References: <20130411084634.GA10767@panahar> <20130411095747.GC18521@panahar> <20130411104605.GA28852@panahar> <874nfds2e0.fsf@gmail.com> <20130411121841.GA30711@panahar> <87zjx5qgwf.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:55912) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQJMc-0000C9-Gn for emacs-orgmode@gnu.org; Thu, 11 Apr 2013 11:24:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQJMb-0002hS-DW for emacs-orgmode@gnu.org; Thu, 11 Apr 2013 11:24:38 -0400 Received: from mail-pa0-f54.google.com ([209.85.220.54]:51178) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQJMb-0002hD-7i for emacs-orgmode@gnu.org; Thu, 11 Apr 2013 11:24:37 -0400 Received: by mail-pa0-f54.google.com with SMTP id fa11so953107pad.41 for ; Thu, 11 Apr 2013 08:24:36 -0700 (PDT) Content-Disposition: inline In-Reply-To: <87zjx5qgwf.fsf@gmail.com> 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 > > > And then, we need to separately name the results block, and use > > a different name for it, so that the cross-references pick it up > > correctly? > > Yes, the name given to the results block doesn't depend on the results > keyword. You can give it any name, as long as it is unique. > > Here is an example: > > #+caption: Src block caption > #+name: my-src > #+begin_src emacs-lisp > (+ 1 2) > #+end_src > > #+name: anything > #+caption: Element caption > #+results: my-src > : 3 > > As far as affiliated keywords go, the only one you needn't provide is > "#+results:". Abundantly clear. Thank you. Have already started cleaning my file and it is working the way it should :) Vikas