From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Bach Subject: Table columns verbatim export Date: Fri, 31 Oct 2014 12:47:41 +0100 Message-ID: Reply-To: phaebz@gmail.com Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35954) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XkDke-0002S5-IR for emacs-orgmode@gnu.org; Fri, 31 Oct 2014 11:04:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XkAgQ-0006Hg-OW for emacs-orgmode@gnu.org; Fri, 31 Oct 2014 07:48:06 -0400 Received: from plane.gmane.org ([80.91.229.3]:59848) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XkAgQ-0006DM-I0 for emacs-orgmode@gnu.org; Fri, 31 Oct 2014 07:47:58 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XkAgO-0008NW-4A for emacs-orgmode@gnu.org; Fri, 31 Oct 2014 12:47:56 +0100 Received: from p4fdc4bdd.dip0.t-ipconnect.de ([79.220.75.221]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 31 Oct 2014 12:47:56 +0100 Received: from phaebz by p4fdc4bdd.dip0.t-ipconnect.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 31 Oct 2014 12:47:56 +0100 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, I am looking for a way to format table columns to be verbatim for the (latex) export. The reason is that in the following table, the numpy `A[0]` will be interpreted as a footnote without a matching description and export will fail. | | matlab | r | numpy | | element access | A(1, 1) | A[1, 1] | A[0, 0] | | row access | A(1, 1:2) | A[1, ] | A[0] | I had a look into the manual and maybe relatedly found section 3.5.3 "Emacs Lisp forms as formulas" with string manipulation, e.g. wrapping == or ~~ around the string, but I am really just concerned with export. Is there an obvious way I am missing? Thanks and Best Regards, Michael