Re: [O] How can I write side by side code comparison table

2013-07-11 Thread Rick Frankel
On 2013-07-10 18:00, Jisang Yoo wrote: I can write a table: ... but I don't know how to combine the two-column table with the two source code blocks in a way that exports to code tables like in Emergency Elisp how about for scalars as example blocks: #+name: emacs-scalar #+BEGIN_SRC emacs-li

Re: [O] How can I write side by side code comparison table

2013-07-11 Thread Jambunathan K
Jisang Yoo writes: > I can write a table: > > | Python | Emacs Lisp | > |+| > ||| > > and I can write two source code blocks: > > #+BEGIN_SRC python > a = [0, 1, 2] > a[0] += 10 > #+END_SRC > #+BEGIN_SRC elisp > (setq a (vector 0 1 2)) > (cl-incf (e

[O] How can I write side by side code comparison table

2013-07-11 Thread Jisang Yoo
I can write a table: | Python | Emacs Lisp | |+| ||| and I can write two source code blocks: #+BEGIN_SRC python a = [0, 1, 2] a[0] += 10 #+END_SRC #+BEGIN_SRC elisp (setq a (vector 0 1 2)) (cl-incf (elt a 0) 10) #+END_SRC but I don't know how to