From: Rasmus <rasmus@gmx.us>
To: emacs-orgmode@gnu.org
Subject: Re: hlines in babel output
Date: Sat, 23 Feb 2013 22:23:45 +0100 [thread overview]
Message-ID: <871uc667xa.fsf@pank.eu> (raw)
In-Reply-To: 871ucnr5ud.fsf@pank.eu
> I have the following Org document where I would like to add some extra
> hlines to the output. I'm using babel. I tried the ascii package but
> couldn't find anything giving me extra hlines. I'd also prefer to
> stick to just babel.
I'm still looking for a good way to insert horizontal lines into
generated tables. I have been trying to use Emacs Lisp to use
org-table-insert-hline using (i) babel and (ii) noweb. For (i) I need
to add an hline object as the second-to-last object, but I havne't
been successful so far.
I'd appreciate any hints.
#+NAME:budget-dta
#+begin_src R :colnames yes :noweb-ref TBL :exports none
tt <- textConnection("
account p
rent 110
food 50")
ee <- read.table(tt, header = TRUE)
close(tt)
cc <- 4 ## a complicated number generated with R
ee$p <- ee$p * cc
ee <- rbind(ee, data.frame(p=sum(ee$p),account=c("total")))
ee
#+end_src
#+NAME:test
#+RESULTS: budget-dta
| account | p |
|---------+-----|
| rent | 440 |
| food | 200 |
| total | 640 |
#+BEGIN_SRC emacs-lisp :var X=test
(add-to-list 'X 'hline t)
#+END_SRC
--
Vote for proprietary math!
next prev parent reply other threads:[~2013-02-23 21:24 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-11 1:34 hlines in babel output Rasmus
2013-02-23 21:23 ` Rasmus [this message]
2013-02-23 21:38 ` Eric Schulte
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=871uc667xa.fsf@pank.eu \
--to=rasmus@gmx.us \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).