emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Alan Schmitt <alan.schmitt@polytechnique.org>
To: "Thomas S. Dye" <tsd@tsdye.com>
Cc: emacs-orgmode@gnu.org
Subject: Re: including the result of a block in several places?
Date: Mon, 10 Dec 2012 09:57:04 +0100	[thread overview]
Message-ID: <m2pq2ii8tb.fsf@top-wifi.irisa.fr> (raw)
In-Reply-To: <m1boe4zdka.fsf@tsdye.com> (Thomas S. Dye's message of "Sat, 08 Dec 2012 06:57:57 -1000")

tsd@tsdye.com (Thomas S. Dye) writes:

> I've had these in my .emacs for quite a while and they seem to work:
>
> ** ON Load Standard Library of Babel
> #+begin_src emacs-lisp :tangle yes
>   (org-babel-lob-ingest "~/.emacs.d/src/org-mode/contrib/babel/library-of-babel.org")
> #+end_src

Thanks a lot, I'm now able to call the "echo" function.

Unfortunately it does not exactly do what I want (but I was not really
clear about what I wanted first). Here is the code I have (don't worry
about the code inside the blocks, the idea is that I want a source block
and its results on two different slides, without having to duplicate
them):

#+begin_src org
** Prototype-based objects

#+name: object_example
#+begin_src js :results code output :exports both
var f = function(a) {
	this.x = a
}

f.prototype = {y : 1}

var o = new f (42)

console.log("o.x = " + o.x + ", o.y = " + o.y)
#+end_src

Results

#+results: object_example

** Prototypes resolution

#+BEGIN_SRC coq
Inductive proto : heap -> field -> loc -> loc -> Prop :=
  | proto_null : forall h f,
      proto h f loc_null loc_null
  | proto_here : forall h l f,
      indom h l f ->
      proto h f l l
  | proto_next : forall h l f l' l'',
      ~ indom h l f ->
      binds h l field_proto l' ->
      proto h f l' l'' ->
      proto h f l l''.
#+END_SRC

** Prototype-based objects

#+call: echo(object_example) :results code output :exports both
#+end_src

My problem is twofold.
- The code from "object_example" is not repeated. I guess that here what
I want is to be able to export a source code block in several places. Is
it possible?
- The highlighting of the results in the "#+call:" line is not in
javascript syntax, and I don't know how to tell the call that the result
will be javascript.

Thanks again,

Alan

  reply	other threads:[~2012-12-10  8:58 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-07 16:16 including the result of a block in several places? Alan Schmitt
2012-12-07 18:26 ` Sebastien Vauban
2012-12-08 10:13   ` Alan Schmitt
2012-12-08 16:57     ` Thomas S. Dye
2012-12-10  8:57       ` Alan Schmitt [this message]
2012-12-10  9:57         ` Sebastien Vauban
2012-12-10 10:17           ` Alan Schmitt
2012-12-10 14:58             ` Eric Schulte
2012-12-10 16:14               ` Alan Schmitt
2012-12-10 19:32               ` Alan Schmitt
2012-12-10 19:43                 ` Thomas S. Dye
2012-12-11  7:48                   ` Alan Schmitt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m2pq2ii8tb.fsf@top-wifi.irisa.fr \
    --to=alan.schmitt@polytechnique.org \
    --cc=emacs-orgmode@gnu.org \
    --cc=tsd@tsdye.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).