From mboxrd@z Thu Jan 1 00:00:00 1970 From: Herbert Sitz Subject: Bug in pdf export of tables with latest development version Date: Sat, 29 Oct 2011 00:42:38 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:60897) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJx0k-00079C-8T for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 20:42:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RJx0j-0004b9-2a for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 20:42:58 -0400 Received: from lo.gmane.org ([80.91.229.12]:59173) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RJx0i-0004aw-SL for emacs-orgmode@gnu.org; Fri, 28 Oct 2011 20:42:57 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1RJx0f-0006MZ-6L for emacs-orgmode@gnu.org; Sat, 29 Oct 2011 02:42:53 +0200 Received: from c-24-22-131-140.hsd1.wa.comcast.net ([24.22.131.140]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 29 Oct 2011 02:42:53 +0200 Received: from hesitz by c-24-22-131-140.hsd1.wa.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 29 Oct 2011 02:42:53 +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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I'm having problems exporting to pdf with a source block that generates a table result. If the table has enough rows to get to bottom of page, it seems, the rest of the table output disappears/is discarded and the pdf document skips to text after the source block output. Everything works fine with html output. Here's sample code. With repeat number of above 50 or so it will truncate table output in resulting pdf: -------------- * Head one #+begin_src python :exports results :results value mylist = [] for i in range(100): mylist.append([i,i+1,i+2,i+3,i+4]) return str(mylist) #+end_src #+results: * Head two more text for head two ---------------