From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jon David Subject: Re: [Orgmode] tables with many rows not all visible when exporting to PDF Date: Fri, 9 Feb 2018 11:58:02 -0700 Message-ID: <566e3c04-1640-cdab-fd74-09b47c5cfac1@cs.unm.edu> References: <679ffab9-dfae-b146-3f1e-7b13221dbd5f@cs.unm.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45200) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ekDsI-0006mz-TS for emacs-orgmode@gnu.org; Fri, 09 Feb 2018 13:58:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ekDsF-0001qS-Sw for emacs-orgmode@gnu.org; Fri, 09 Feb 2018 13:58:18 -0500 Received: from snape.cs.unm.edu ([64.106.20.59]:48033) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ekDsF-0001oS-ML for emacs-orgmode@gnu.org; Fri, 09 Feb 2018 13:58:15 -0500 Received: from localhost (localhost [127.0.0.1]) by snape.cs.unm.edu (Postfix) with ESMTP id 3D5B84045D for ; Fri, 9 Feb 2018 11:58:14 -0700 (MST) Received: from snape.cs.unm.edu ([127.0.0.1]) by localhost (snape.cs.unm.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dqLFd6vw0V4q for ; Fri, 9 Feb 2018 11:58:08 -0700 (MST) Received: from [10.82.179.72] (unknown [64.106.111.132]) (Authenticated sender: jdavid) by snape.cs.unm.edu (Postfix) with ESMTPSA id 8D4FA40022 for ; Fri, 9 Feb 2018 11:58:08 -0700 (MST) In-Reply-To: <679ffab9-dfae-b146-3f1e-7b13221dbd5f@cs.unm.edu> Content-Language: en-US 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 I found the solution. This page shows shows a list of attributes that are available: https://orgmode.org/manual/Tables-in-LaTeX-export.html#Tables-in-LaTeX-export To fix my problem, I did the following: (1) add this to the top of the org file: #+LaTeX_HEADER: \usepackage{longtable} (2) Before the table definition, add the following: #+ATTR_LATEX: :environment longtable This fixes the issue. Any table with many rows will now continue to the next page.