From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ken Mankoff Subject: Export (sometimes) skips sections without preceding blank line Date: Sat, 25 Nov 2017 13:18:47 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48889) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eIZQ8-00017M-BR for emacs-orgmode@gnu.org; Sat, 25 Nov 2017 07:18:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eIZQ5-0002Rj-6w for emacs-orgmode@gnu.org; Sat, 25 Nov 2017 07:18:56 -0500 Received: from mail-lf0-x235.google.com ([2a00:1450:4010:c07::235]:35603) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eIZQ4-0002RM-Uy for emacs-orgmode@gnu.org; Sat, 25 Nov 2017 07:18:53 -0500 Received: by mail-lf0-x235.google.com with SMTP id o41so27928721lfi.2 for ; Sat, 25 Nov 2017 04:18:52 -0800 (PST) Received: from GEUS2690macwsm.local (0x3e2c87b8.mobile.telia.dk. [62.44.135.184]) by smtp.gmail.com with ESMTPSA id r74sm1928474ljb.28.2017.11.25.04.18.50 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sat, 25 Nov 2017 04:18:50 -0800 (PST) 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: Org Mode Hi Org list, I'm wondering if anyone else experiences LaTeX export skipping sections. It appears to be related to no blank lines after code RESULT blocks? Using emacs -Q on version 9.1.3. The following MWE does *not* export subsection "Two". * Skipping Exports ** One :noexport: #+BEGIN_SRC sh :results verbatim :eval no-export echo "hello, world" #+END_SRC #+RESULTS: : hello, world ** Two Good bye cruel world It also doesn't export if the results are wrapped in a #+BEGIN_example block. It does export it if there is a blank line before "* Two", but the blank line is not required - for example, if the preceding line is "#+END_SRC" but there is no blank line, it does export (but not #+END_example). -k.