Nicolas Goaziou <[email protected]> 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(@I..@II)::$sumb=vsum(@I..@II)
\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