From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Gauland Subject: Number formatting in tables for LaTeX export Date: Wed, 1 May 2013 01:02:26 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:54455) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UXMGD-0005oI-5a for emacs-orgmode@gnu.org; Tue, 30 Apr 2013 21:55:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UXMGB-0000tY-Am for emacs-orgmode@gnu.org; Tue, 30 Apr 2013 21:55:09 -0400 Received: from plane.gmane.org ([80.91.229.3]:43494) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UXMGB-0000t3-3y for emacs-orgmode@gnu.org; Tue, 30 Apr 2013 21:55:07 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UXMG8-0005jm-26 for emacs-orgmode@gnu.org; Wed, 01 May 2013 03:55:04 +0200 Received: from 218-101-54-25.trimble.co.nz ([218.101.54.25]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 01 May 2013 03:55:04 +0200 Received: from mikelygee by 218-101-54-25.trimble.co.nz with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 01 May 2013 03:55:04 +0200 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 I have a table representing a memory map, something like this: | Start | End | Purpose | |-------+------+--------------------------------| | 0000 | 1E08 | Bootloader | | 1E09 | 1FFF | Unused (Bootloader expansion) | | 2000 | 3F39 | Application | When I export to LaTeX, '1E08' and '1E09' are interpreted as decimal exponent numbers, and are exported as '1(08)' and '1(09)'. The only way I've found to prevent this is to include the line: #+ATTR_LaTeX: :mode verbatim which produces a rather ugly fixed-font table. Is there an existing solution to this? If not, any ideas for addressing it? Kind Regards, Mike Gauland