From mboxrd@z Thu Jan 1 00:00:00 1970 From: jiewuza Subject: Re: How to create tables with multi-rows/columns cells? Date: Wed, 13 Sep 2017 09:49:35 +0800 Message-ID: References: <87y3plk4ez.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40652) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1drwoe-0000EL-Ji for emacs-orgmode@gnu.org; Tue, 12 Sep 2017 21:50:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1drwob-0007h3-Vs for emacs-orgmode@gnu.org; Tue, 12 Sep 2017 21:50:12 -0400 Received: from [195.159.176.226] (port=58167 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1drwob-0007e9-Nv for emacs-orgmode@gnu.org; Tue, 12 Sep 2017 21:50:09 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1drwoJ-000185-4L for emacs-orgmode@gnu.org; Wed, 13 Sep 2017 03:49:51 +0200 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" To: emacs-orgmode@gnu.org Eric S Fraga writes: > On Monday, 11 Sep 2017 at 04:36, jiewuza wrote: >> It is quite common to have multi-rows/columns cells in talbe. But as far >> as I know, it seems impossible with the org built-in table editor. > > org does not support multi-row/column cells in tables. When you say: > >> It works. > > what do you mean? If I edit your example, org does not recognise it as > a table (or, at least, not a properly defined one). I mean when I export the table to html (see below), I get what I want. #+BEGIN_SRC org +-----+-----+-----+ | h | | +-----+-----+ h3 | | h1 | h2 | | +-----+-----+-----+ | a | b | c | +-----+-----+-----+ | d | e | f | +-----+-----+-----+ #+END_SRC #+BEGIN_SRC html
     h           
  h3 
     
  h1   h2  
  a     b     c  
  d     e     f  
#+END_SRC But there is no in the output. That is why I suggest maybe we can add org support to treat "===" as a separator of thead and tbody.