From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Grothe Subject: Re: Columns with marking characters are exported to latex (Org 8) Date: Tue, 19 Aug 2014 00:14:42 +0200 Message-ID: <53F27AD2.7020103@th-grothe.de> References: <53F25B21.5060308@th-grothe.de> <8761hppj69.fsf@alphaville.bos.redhat.com> <871tsdpimx.fsf@alphaville.bos.redhat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------050209020307050102040303" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39945) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XJVCW-00068U-CQ for emacs-orgmode@gnu.org; Mon, 18 Aug 2014 18:14:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XJVCQ-0000Nu-4a for emacs-orgmode@gnu.org; Mon, 18 Aug 2014 18:14:52 -0400 Received: from mx02.posteo.de ([89.146.194.165]:53501) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XJVCP-0000Nk-Uk for emacs-orgmode@gnu.org; Mon, 18 Aug 2014 18:14:46 -0400 Received: from localhost (localhost.localdomain [127.0.0.1]) by mx02.posteo.de (Postfix) with ESMTP id E0B7725AF52C for ; Tue, 19 Aug 2014 00:14:44 +0200 (CEST) Received: from posteo.de ([10.125.125.178]) (using TLS) by localhost (amavis1.posteo.de [10.125.125.165]) (amavisd-new, port 10026) with ESMTPS id rgq3dIdRC-RQ for ; Tue, 19 Aug 2014 00:14:44 +0200 (CEST) Received: from mail.posteo.de (localhost [127.0.0.1]) by mail.posteo.de (Postfix) with ESMTPSA id 182672C0046 for ; Tue, 19 Aug 2014 00:14:43 +0200 (CEST) In-Reply-To: <871tsdpimx.fsf@alphaville.bos.redhat.com> 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 This is a multi-part message in MIME format. --------------050209020307050102040303 Content-Type: text/plain; charset=iso-8859-15; format=flowed Content-Transfer-Encoding: 7bit Hallo Nick, * Nick Dokos, 19.08.2014 00:13:53: > Sorry - disregard that. I didn't test with radio tables, I just did a > straight export. I'll try radio tables later. the attached file is a showing the latex code after the export from orgtbl -- see the result, I made some small comments on it... -- Regards Thorsten --------------050209020307050102040303 Content-Type: text/x-tex; name="Orgerror.tex" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="Orgerror.tex" \documentclass{scrartcl} \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} \usepackage[ngerman]{babel} \usepackage{colortbl} \begin{document} #+TBLNAME: Test #+ORGTBL: SEND Test orgtbl-to-latex | | A | B | |---+------+------| | / | 6 | 2 | | / | 4 | 9 | |---+------+------| | _ | suma | sumb | | | 10 | 11 | #+TBLFM: $suma=vsum(@I..@II)::$sumb=vsum(@I..@II) % BEGIN RECEIVE ORGTBL Test \begin{tabular}{lrr} & A & B \\ \hline / & 6 & 2 \\ % see here / & 4 & 9 \\ % see here \hline $\backslash$$_$ & suma & sumb \\ % see here & 10 & 11 \\ \end{tabular} % END RECEIVE ORGTBL Test \end{document} --------------050209020307050102040303--