emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: John Hendy <jw.hendy@gmail.com>
To: Neuwirth Erich <erich.neuwirth@univie.ac.at>
Cc: "emacs-orgmode@gnu.org emacs-orgmode@gnu.org" <emacs-orgmode@gnu.org>
Subject: Re: LaTeX table formatting
Date: Tue, 28 Aug 2012 14:03:27 -0500	[thread overview]
Message-ID: <CA+M2ft-dwsejOgFJpXO2XACTK_ukMoAJAPRrpQ0WPjf-rdzpoA@mail.gmail.com> (raw)
In-Reply-To: <FF11A7E0-935C-45CB-AA2E-359096832D31@univie.ac.at>

On Tue, Aug 28, 2012 at 1:10 PM, Neuwirth Erich
<erich.neuwirth@univie.ac.at> wrote:
> I would like to add some twists to tables.
> Using the ATTR_LaTeX attribute I can control
> alignment and vertical gridlines in the table.
> I also would like to have horizontal gridlines,
> and I would like to have multicol top headers.
> tgroupt and n.tgroup in theory should me give these multicol headers,
> but it does not work.

I didn't think Org tables supported multicol/multirow. After searching
a bit... does this help?
- http://www.gnu.org/software/emacs/manual/html_node/org/A-LaTeX-example.html

For \hlines, you need dashed sep between all rows.

Like so:

|      |        | *mean* |     | *se* |      |
| year | gender |     m1 |  m2 |   s1 |   s2 |
|------+--------+--------+-----+------+------|
| 2000 | f      |    1.0 | 4.6 | 1.00 | 1.50 |
|------+--------+--------+-----+------+------|
| 2003 | m      |    1.1 | 4.7 | 1.14 | 1.64 |
|------+--------+--------+-----+------+------|
| 2006 | f      |    1.2 | 4.7 | 1.29 | 1.79 |
|------+--------+--------+-----+------+------|


John

>
> Is there a way of accomplishing what I want?
>
>
>
>
> #+title: Testing R table output
> #+author: Erich Neuwirth
> #+date: 28. August 2012
>
> #+ATTR_LaTeX: align=|l|c|r|r|r|r|
> #+ATTR_HTML: border="2" rules="all" frame="border"
> #+begin_src R :session *RPisa* :results output org :exports results
> require(ascii)
> mydf <- data.frame(
>             year   = rep(as.character(rep(seq(2000,2009,3)),each=2)),
>             gender = rep(c("f","m"),times=2),
>             m1     = (11:18)/11,
>             m2     = (102:109)/22,
>             s1     = seq(1,2,length.out=8),
>             s2     = seq(1.5,2.5,length.out=8)
>    )
>
> res <- ascii(mydf,
>              digits=c(0,0,1,1,2,2),
>              align=c("l","c","r","r","r","r"),
>              format=c("d","s","f","f","f","f"),
>              include.rownames=FALSE,
>              tgroup=c("","mean","se"),
>              n.tgroup=c(2,2,2))
>
> print(res,type="org")
> #+end_src
>
>

      reply	other threads:[~2012-08-28 19:03 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-28 18:10 LaTeX table formatting Neuwirth Erich
2012-08-28 19:03 ` John Hendy [this message]

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=CA+M2ft-dwsejOgFJpXO2XACTK_ukMoAJAPRrpQ0WPjf-rdzpoA@mail.gmail.com \
    --to=jw.hendy@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    --cc=erich.neuwirth@univie.ac.at \
    /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).