From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean Louis Subject: How to paginate Babel Lisp output? Date: Sun, 9 Jul 2017 17:57:37 +0300 Message-ID: <20170709145737.GA20503@protected.rcdrun.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50935) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dUDep-0007sU-9j for emacs-orgmode@gnu.org; Sun, 09 Jul 2017 10:58:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dUDem-0002CA-8u for emacs-orgmode@gnu.org; Sun, 09 Jul 2017 10:57:59 -0400 Received: from stw1.rcdrun.com ([217.170.207.13]:41956) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dUDem-0002BD-1n for emacs-orgmode@gnu.org; Sun, 09 Jul 2017 10:57:56 -0400 Content-Disposition: inline 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 Hello, I have a very simple lisp output within Org Mode file, and it delivers list of lists with 4-5 elements, and it displays nicely as a text. #+BEGIN_SRC lisp :exports results (load #P"/home/data1/protected//lisp/load-some-files.lisp" :verbose nil :print nil) (sku-list-values-by-location :location 1369) #+END_SRC But when exporting LaTeX I get the result that the table is basically too long, even being printed over the page number and below, and does not even continue on the next page. Is there a way or customization to make it break pages automatically when there is long output from source blocks? Jean