Re: [O] Include results in a table

2014-10-28 Thread Michael Brand
Hi Thierry On Tue, Oct 28, 2014 at 10:02 AM, abonnements wrote: > #+call: gen(A) > #+results: A > : 10 > > #+call: gen(B) > #+results: B > : 20 > > Is there a simple mean to aggregate the results in a table, i.e to get > | A | 10 | > | B | 20 | One solution with TBLFM is: #+BEGIN_SRC emacs-lisp

Re: [O] Include results in a table

2014-10-28 Thread Thorsten Jolitz
abonnements writes: > Hi, thank you for your answer. > > Your solution is OK but only for the example I gave (2 or 3 > results). In practice I have about 10 results and the number of them > may be variable... Furthermore :vars does not work on my version (I > must use :var x=A :var y=B)... :var

Re: [O] Include results in a table

2014-10-28 Thread abonnements
Hi, thank you for your answer. Your solution is OK but only for the example I gave (2 or 3 results). In practice I have about 10 results and the number of them may be variable... Furthermore :vars does not work on my version (I must use :var x=A :var y=B)... Ta. Thierry Hello, / I have so

Re: [O] Include results in a table

2014-10-28 Thread Thorsten Jolitz
abonnements writes: Hello, > I have somethink like that > > #+call: gen(A) > #+results: A > : 10 > > #+call: gen(B) > #+results: B > : 20 > > Is there a simple mean to aggregate the results in a table, i.e to get > | A | 10 | > | B | 20 | > > I think some lisp can do that but as a beginner... bu