From mboxrd@z Thu Jan 1 00:00:00 1970 From: Seweryn Kokot Subject: Difference if exporting a table to latex Date: Tue, 16 Nov 2010 15:37:26 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=44635 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PINbL-0001lA-MF for emacs-orgmode@gnu.org; Tue, 16 Nov 2010 10:37:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PINbK-0006zW-DB for emacs-orgmode@gnu.org; Tue, 16 Nov 2010 10:37:43 -0500 Received: from lo.gmane.org ([80.91.229.12]:34445) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PINbK-0006zP-7K for emacs-orgmode@gnu.org; Tue, 16 Nov 2010 10:37:42 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1PINbI-0000Gn-0L for emacs-orgmode@gnu.org; Tue, 16 Nov 2010 16:37:40 +0100 Received: from 139.191.131.39 ([139.191.131.39]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 16 Nov 2010 16:37:39 +0100 Received: from sewkokot by 139.191.131.39 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 16 Nov 2010 16:37:39 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hello, First I had a table | M_r | /33.22/ | in an .org file and exporting the table to latex gave the following \begin{center} \begin{tabular}{ll} M$_r$ & \emph{33.22} \\ \end{tabular} \end{center} Then as I needed more control so I moved to a .tex file. This time, using a radio table, the converted table is quite different i.e. no $$ around _r, and no \emph env. % BEGIN RECEIVE ORGTBL test1 \begin{tabular}{ll} M_r & /33.22/ \\ \end{tabular} % END RECEIVE ORGTBL test1 \begin{comment} #+ORGTBL: SEND test1 orgtbl-to-latex | M_r | /33.22/ | \end{comment} Is it a bug in `orgtbl-to-latex' or how I can get the same behaviour as in exporting from an .org file?