From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Lawrence Subject: Re: Tables with line wrapping? Date: Sat, 22 Feb 2014 13:05:34 -0800 Message-ID: <87zjli6eox.fsf@berkeley.edu> References: <1393097433.29605.86550453.4700A733@webmail.messagingengine.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47296) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WHJnK-0000ha-4p for emacs-orgmode@gnu.org; Sat, 22 Feb 2014 16:07:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WHJnD-0004Ys-Df for emacs-orgmode@gnu.org; Sat, 22 Feb 2014 16:07:34 -0500 Received: from plane.gmane.org ([80.91.229.3]:34063) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WHJnD-0004YM-7U for emacs-orgmode@gnu.org; Sat, 22 Feb 2014 16:07:27 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WHJnB-0007GD-NK for emacs-orgmode@gnu.org; Sat, 22 Feb 2014 22:07:25 +0100 Received: from c-67-164-45-159.hsd1.ca.comcast.net ([67.164.45.159]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 22 Feb 2014 22:07:25 +0100 Received: from richard.lawrence by c-67-164-45-159.hsd1.ca.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 22 Feb 2014 22:07:25 +0100 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 Hi Peter, Peter Davis writes: > I'm using org-mode to prepare a document that will ultimately be > exported to PDF. Unfortunately, I need to include a table whose contents > will wrap as needed. I've run into this problem before too, but I haven't found a good solution. (Though I haven't looked that hard.) Maybe someone else will have a better suggestion than the workaround I've used (see below). > The options I can see are: > > 1) Do everything I can in org-mode, then export and edit the > intermediate .tex file, or > > 2) Create the table with some other tool, and include it as an image > into the org document > > Am I missing anything? Are there other (better?) ways? As I expect to be > revising both the table and the rest of the document for a while, the > uni-directional workflow in #1 above would be difficult. What about just maintaining the table as an embedded LaTeX block? e.g. ... your Org text here ... #+BEGIN_LATEX \begin{tabular} % or wrap with \begin{table} if you need, etc. % ... \end{tabular} #+END_LATEX That way, at least, you can edit your document and the table at the same time and in the same file, though it means giving up Org's nice table editing features. Best, Richard