From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: [RFC] Rewrite radio tables Date: Mon, 25 Aug 2014 12:08:05 -0400 Message-ID: <87tx501riy.fsf@alphaville.bos.redhat.com> References: <8761hh6662.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34227) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XLwoo-0001fF-GV for emacs-orgmode@gnu.org; Mon, 25 Aug 2014 12:08:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XLwoh-0005NY-Ez for emacs-orgmode@gnu.org; Mon, 25 Aug 2014 12:08:30 -0400 Received: from plane.gmane.org ([80.91.229.3]:39420) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XLwoh-0005N5-7G for emacs-orgmode@gnu.org; Mon, 25 Aug 2014 12:08:23 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XLwog-0006Bg-2Y for emacs-orgmode@gnu.org; Mon, 25 Aug 2014 18:08:22 +0200 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 25 Aug 2014 18:08:22 +0200 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 25 Aug 2014 18:08:22 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Nicolas Goaziou 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