From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Berry, Charles" Subject: Re: Best way to template a big table Date: Thu, 12 Dec 2019 18:29:39 +0000 Message-ID: <414AEABC-42BD-4847-A03F-29E7EADBDD2D@ucsd.edu> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:55705) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ifTEe-0002iC-TH for emacs-orgmode@gnu.org; Thu, 12 Dec 2019 13:30:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ifTEd-0006Xi-Ga for emacs-orgmode@gnu.org; Thu, 12 Dec 2019 13:30:48 -0500 Received: from mx0b-00395d01.pphosted.com ([148.163.137.170]:27428) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ifTEc-0006WP-Tw for emacs-orgmode@gnu.org; Thu, 12 Dec 2019 13:30:47 -0500 In-Reply-To: Content-Language: en-US Content-ID: <094C62838C5990449822B88AD0268CCC@AD.UCSD.EDU> 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: Lawrence Bottorff Cc: emacs-orgmode Mailinglist , Simon Butler > On Dec 12, 2019, at 8:03 AM, Lawrence Bottorff wrote: >=20 > I just figured out that this=20 >=20 > #+BEGIN_SRC emacs-lisp :results table > '((H1 H2 H3) (text11 text12 text13) (text21 text22 text23) (... ... ...) = (textN1 textN2 textN3)) > #+END_SRC >=20 > #+RESULTS: > | H1 | H2 | H3 | > | text11 | text12 | text13 | > | text21 | text22 | text23 | > | ... | ... | ... | > | textN1 | textN2 | textN3 | >=20 > is probably a better way all around, i.e., "best practice." If any one kn= ows how to get the horizontal lines added in. . . . Add an `hline' in the right place. Like this: #+BEGIN_SRC emacs-lisp :results table '((H1 H2 H3) hline (text11 text12 text13) (text21 text22 text23) (... ... .= ..) (textN1 textN2 textN3)) #+END_SRC HTH, Chuck=