Re: Concatenating results

2022-10-03 Thread Felix Dorner
On Mon, Oct 3, 2022 at 11:28 AM Ihor Radchenko wrote: > > #+begin_src emacs-lisp :noweb yes > > Thank you Ihor. Felix -- Linux. The choice of a GNU generation.

Re: Concatenating results

2022-10-03 Thread Ihor Radchenko
Felix Dorner writes: > I get an error with this: > executing Emacs-Lisp code block... > progn: Symbol’s value as variable is void: >> That's because noweb references are disabled by default (see https://orgmode.org/manual/Noweb-Reference-Syntax.html#Noweb-Reference-Syntax) With default Org

Re: Concatenating results

2022-10-03 Thread Felix Dorner
On Mon, Oct 3, 2022 at 10:44 AM Ihor Radchenko wrote: > #+name: block1 > #+begin_src emacs-lisp :results table > '((1 2) (3 4)) > #+end_src > > #+name: block2 > #+begin_src emacs-lisp :results table > '((5 6) (7 8)) > #+end_src > > > #+begin_src emacs-lisp > (append > '<> > '<>) > #+end_src > I

Re: Concatenating results

2022-10-03 Thread Ihor Radchenko
Felix Dorner writes: > I have a list of N source blocks, of which each produces a table, and all > these tables have the same column count. What is the easiest way to now > make a single table which is the result of calling all these blocks and > concatenating the result? > > Essentially, would

Concatenating results

2022-10-03 Thread Felix Dorner
I have a list of N source blocks, of which each produces a table, and all these tables have the same column count. What is the easiest way to now make a single table which is the result of calling all these blocks and concatenating the result? Essentially, would be also the same as N CALL