From mboxrd@z Thu Jan 1 00:00:00 1970 From: Zephy Subject: LaTeX Radio Tables Date: Mon, 04 Nov 2013 15:30:26 +0100 Message-ID: <5277AF82.9010807@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48234) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VdLAv-0005gc-3n for emacs-orgmode@gnu.org; Mon, 04 Nov 2013 09:30:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VdLAp-0003At-4i for emacs-orgmode@gnu.org; Mon, 04 Nov 2013 09:30:41 -0500 Received: from mail-ea0-x22f.google.com ([2a00:1450:4013:c01::22f]:48923) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VdLAo-0003AY-Lj for emacs-orgmode@gnu.org; Mon, 04 Nov 2013 09:30:34 -0500 Received: by mail-ea0-f175.google.com with SMTP id l15so2833636eak.20 for ; Mon, 04 Nov 2013 06:30:33 -0800 (PST) Received: from [134.130.113.46] (host-113-46.kawo1.rwth-aachen.de. [134.130.113.46]) by mx.google.com with ESMTPSA id x4sm33574664eef.1.2013.11.04.06.30.32 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 04 Nov 2013 06:30:32 -0800 (PST) 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 Hi everyone, I am trying to use orgtbl radio tables in LaTeX. Setting them up works just fine. However when trying to convert the table to TeX format, it behaves weirdly in regards to special characters such as _ or ^. It escapes the character with \ and attaches two brackets {} to it. The following code is an example of what I mean. % BEGIN RECEIVE ORGTBL tlratiosys \hline $p\_{}{\text{T, jet}}$ \\ \hline % END RECEIVE ORGTBL tlratiosys \begin{comment} #+ORGTBL: SEND tlratiosys orgtbl-to-latex :splice t |--------------------------| | $p_{\text{T, jet}}$ | |--------------------------| \end{comment} I looked for possible solutions and found the otption :noescape t, which sadly does not do anything at all. Thanks for your help, Zephy