From mboxrd@z Thu Jan 1 00:00:00 1970 From: srinivas Subject: Tables - Multiple Row and Column span Date: Tue, 23 Feb 2010 05:41:59 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NjnXP-0007Sr-7s for emacs-orgmode@gnu.org; Tue, 23 Feb 2010 00:42:27 -0500 Received: from [140.186.70.92] (port=50437 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NjnXK-0007Q5-0X for emacs-orgmode@gnu.org; Tue, 23 Feb 2010 00:42:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NjnXF-0008Pr-GR for emacs-orgmode@gnu.org; Tue, 23 Feb 2010 00:42:22 -0500 Received: from lo.gmane.org ([80.91.229.12]:44794) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NjnXC-0008PP-Pl for emacs-orgmode@gnu.org; Tue, 23 Feb 2010 00:42:15 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1NjnX8-0006WQ-Vc for emacs-orgmode@gnu.org; Tue, 23 Feb 2010 06:42:11 +0100 Received: from ip68-111-64-190.oc.oc.cox.net ([68.111.64.190]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 23 Feb 2010 06:42:10 +0100 Received: from sp_us by ip68-111-64-190.oc.oc.cox.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 23 Feb 2010 06:42:10 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, I realize that orgmode tables do not allow multiple row and column spanning in HTML (export). I also read that orgmode allows one to use table.el for specifying tables and table.el allows multiple row and column span. I haven't figured out how to combine orgmode content with table.el for tables. Is it possible to do the following? * Org mode table | Header 1 | Header 2 | |----------+----------| | R1 C1 | R1 C2 | | R2 C1 | R2 C2 | | R3 C1 | R3 C2 | * table.el table Following table has 1 multi column cell and 1 multi row cell. | Header 1 | Header 2 | |----------+----------| | R1 C1-2 | | R2 C1 | R2-3 C2 | | R3 C1 | | Can anyone please post a working example? Thanks.