From mboxrd@z Thu Jan 1 00:00:00 1970 From: Srinivas Subject: Re: row and col spaning in table? Date: Wed, 28 Jul 2010 18:28:00 +0000 (UTC) Message-ID: References: <83bp9sqdec.fsf@yahoo.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=59734 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OeBMU-0000Lx-6i for emacs-orgmode@gnu.org; Wed, 28 Jul 2010 14:28:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OeBMT-00014A-6C for emacs-orgmode@gnu.org; Wed, 28 Jul 2010 14:28:14 -0400 Received: from lo.gmane.org ([80.91.229.12]:37896) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OeBMT-00013a-0p for emacs-orgmode@gnu.org; Wed, 28 Jul 2010 14:28:13 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1OeBMP-00006k-4A for emacs-orgmode@gnu.org; Wed, 28 Jul 2010 20:28:09 +0200 Received: from d058656.sce.com ([192.212.247.85]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Jul 2010 20:28:09 +0200 Received: from sp_us by d058656.sce.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Jul 2010 20:28:09 +0200 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 Giovanni Ridolfi yahoo.it> writes: > > David Hajage gmail.com> writes: > > > and I was wondering if row and col spaning was possible? > Currently not. > But, if this is your case, you should use the table.el package. > For some reason, I haven't been able to get table.el to work properly during the org-mode publish operation. Carsten had mentioned that this functionality had been fixed in the 6.36x builds but I still haven't been able to get it to work. I would like to see a work example, if you have one. Here is my sample file: ---- begin snip * sample table + ------+--------+ +-------+--------+ | | file | +-------+--------+ + ------+--------+ | | file | + ------+ | | test | test | + ------+--------+ * 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 | | +----------+----------+ --- end snip