From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jisang Yoo Subject: How can I write side by side code comparison table Date: Thu, 11 Jul 2013 07:00:18 +0900 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50227) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ux2Qw-0007vC-76 for emacs-orgmode@gnu.org; Wed, 10 Jul 2013 18:00:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ux2Qt-0004nP-Cq for emacs-orgmode@gnu.org; Wed, 10 Jul 2013 18:00:22 -0400 Received: from mail-qe0-x22e.google.com ([2607:f8b0:400d:c02::22e]:59436) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ux2Qt-0004nF-8y for emacs-orgmode@gnu.org; Wed, 10 Jul 2013 18:00:19 -0400 Received: by mail-qe0-f46.google.com with SMTP id nd7so4029279qeb.5 for ; Wed, 10 Jul 2013 15:00:18 -0700 (PDT) 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 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 combine the two-column table with the two source code blocks in a way that exports to code tables like in Emergency Elisp