From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Charles C. Berry" Subject: Re: List restarts numbering at 1 after table Date: Fri, 25 Nov 2016 08:42:41 -0800 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45891) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cAJaK-0002kl-Hy for emacs-orgmode@gnu.org; Fri, 25 Nov 2016 11:42:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cAJaH-0004GW-Bs for emacs-orgmode@gnu.org; Fri, 25 Nov 2016 11:42:48 -0500 Received: from iport-bcv1-out.ucsd.edu ([132.239.0.119]:38252) by eggs.gnu.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71) (envelope-from ) id 1cAJaG-0004Fz-UK for emacs-orgmode@gnu.org; Fri, 25 Nov 2016 11:42:45 -0500 In-Reply-To: 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: Roger Mason Cc: emacs-orgmode@gnu.org On Fri, 25 Nov 2016, Roger Mason wrote: > Hello, > > I have a table in a list, like this: > > 2. Write stuff in the empty table: > # See http://orgmode.org/manual/LaTeX-specific-attributes.html to get > # predetermined width on export. > #+ATTR_LATEX: :align |p{2cm}|p{2cm}| > |------+--------| > | This | That | > |------+--------| > | | | > |------+--------| > | | | > |------+--------| > | | | > |------+--------| > | | | > |------+--------| > | | | > |------+--------| > 3. Write the answer to another question here > > > On export, the list numbering after the table reverts to 1. Is there a > way to avoid this? Indentation matters. I put 4 spaces before every line under `2.' 2. Write stuff in the empty table: # See http://orgmode.org/manual/LaTeX-specific-attributes.html to get # predetermined width on export. #+ATTR_LATEX: :align |p{2cm}|p{2cm}| |------+------| | This | That | |------+------| | | | |------+------| | | | |------+------| | | | |------+------| | | | |------+------| | | | |------+------| 3. Write the answer to another question here And exporting to ascii the numbering starts at 1. and continues at 2. after the table. Exporting in latex, both items and the table are all enclosed in one enumerate environment. HTH, Chuck