From mboxrd@z Thu Jan 1 00:00:00 1970 From: Omid Subject: How to tell Org mode radio table translator not to wrap, Greeks in dollars ($$) Date: Fri, 03 Apr 2015 22:52:28 -0400 Message-ID: <551F51EC.8010405@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53478) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YeECJ-0007cn-Sy for emacs-orgmode@gnu.org; Fri, 03 Apr 2015 22:52:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YeECE-000697-R2 for emacs-orgmode@gnu.org; Fri, 03 Apr 2015 22:52:35 -0400 Received: from mail-qg0-x22e.google.com ([2607:f8b0:400d:c04::22e]:34776) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YeECE-00068y-MZ for emacs-orgmode@gnu.org; Fri, 03 Apr 2015 22:52:30 -0400 Received: by qgfi89 with SMTP id i89so20656133qgf.1 for ; Fri, 03 Apr 2015 19:52:30 -0700 (PDT) Received: from [172.31.98.74] ([50.242.158.83]) by mx.google.com with ESMTPSA id 206sm6967362qhy.1.2015.04.03.19.52.28 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 03 Apr 2015 19:52:29 -0700 (PDT) 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 Hello, I'm trying to use an Org mode Radio Table in LaTeX according to: http://orgmode.org/manual/Radio-tables.html http://orgmode.org/manual/A-LaTeX-example.html#A-LaTeX-example My Org mode table is representing a matrix containing Greek letters denoted by LaTeX commands (e.g., \mu). The "radioing" process wraps these commands in dollars (\mu changes to $\mu$). I'm using `:splice t' to return only table body lines (without wrapping them in a tabular environment) to insert the table in my equation and matrix environments. I tried `:fmt "%s"' hoping that the table fields would be left untouched, but, no the translator still wraps my \mu's in $$. Here is an example: \begin{comment} #+ORGTBL: SEND Ah-advection orgtbl-to-latex :splice t :skip 0 :fmt "%s" | 1-\mu | | | | | | \mu | 1-\mu | | | | | | \ddots | \ddots | | | | | | \mu | 1-\mu | | | | | | \mu | 1-\mu | \end{comment} with the translated result \begin{equation} \label{eq:Ah-advection} A_{h}= \begin{bmatrix} % BEGIN RECEIVE ORGTBL Ah-advection 1-$\mu$ & & & & \\ $\mu$ & 1-$\mu$ & & & \\ & \ddots & \ddots & & \\ & & $\mu$ & 1-$\mu$ & \\ & & & $\mu$ & 1-$\mu$ \\ % END RECEIVE ORGTBL Ah-advection \end{bmatrix} \end{equation} How can I tell the table translator not to wrap Greeks in $$? Thanks, -- Omid