emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Best way to template a big table


From: Berry, Charles
Subject: Re: Best way to template a big table
Date: Thu, 12 Dec 2019 18:29:39 +0000


> On Dec 12, 2019, at 8:03 AM, Lawrence Bottorff <address@hidden> wrote:
> 
> I just figured out that this 
> 
> #+BEGIN_SRC emacs-lisp :results table
> '((H1 H2 H3) (text11 text12 text13) (text21 text22 text23) (... ... ...) 
> (textN1 textN2 textN3))
> #+END_SRC
> 
> #+RESULTS:
> | H1     | H2     | H3     |
> | text11 | text12 | text13 |
> | text21 | text22 | text23 |
> | ...    | ...    | ...    |
> | textN1 | textN2 | textN3 |
> 
> is probably a better way all around, i.e., "best practice." If any one knows 
> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]