[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] [RFC] Rewrite radio tables
From: |
Nick Dokos |
Subject: |
Re: [O] [RFC] Rewrite radio tables |
Date: |
Mon, 25 Aug 2014 12:08:05 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4.50 (gnu/linux) |
Nicolas Goaziou <address@hidden> writes:
> The following patch implements radio tables and `orgtbl-to-...'
> functions using Org export engine. The implementation is probably not
> totally backward compatible, though.
>
Thanks for doing this!
> ...
> Feedback welcome.
>
I tried it with one of Thorsten Grotte's examples:
--8<---------------cut here---------------start------------->8---
\documentclass{article}
\begin{document}
I tried to export this table to latex:
\begin{comment}
#+TBLNAME: Test
#+ORGTBL: SEND Test orgtbl-to-latex :skip 1 :splice t
| C | A | B |
|---+------+------|
| | 6 | 2 |
| | 4 | 9 |
|---+------+------|
| _ | suma | sumb |
| | 10 | 11 |
#+TBLFM: $suma=vsum(@address@hidden)::$sumb=vsum(@address@hidden)
\end{comment}
and got the following result:
% BEGIN RECEIVE ORGTBL Test
10 & 11\\
% END RECEIVE ORGTBL Test
\end{document}
--8<---------------cut here---------------end--------------->8---
It works fine without the :skip argument, but with it, it seems to
skip to the second hline.
Thanks,
Nick