From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?G=FCnter?= Lichtenberg Subject: Exponential numbers in latex table export Date: Tue, 27 Mar 2018 19:49:10 +0200 Message-ID: <17107066.dRKVHBuYob@krailli.fritz.box> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41613) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f0sis-00023O-Dm for emacs-orgmode@gnu.org; Tue, 27 Mar 2018 13:49:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f0sin-0008Bw-I7 for emacs-orgmode@gnu.org; Tue, 27 Mar 2018 13:49:26 -0400 Received: from mout.kundenserver.de ([212.227.126.135]:53255) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f0sin-0008BI-7C for emacs-orgmode@gnu.org; Tue, 27 Mar 2018 13:49:21 -0400 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" To: emacs-orgmode@gnu.org Hi I have a document with many automatically generated tables that contain numbers in exponential Format, e.g. 2e09. When I export the tables to LaTeX and pdf I get something like 2 (-09) in the pdf, if there is no character after the number in the table Minimal Example: |--------------| | 1.2e09 (abs) | | 2.3e-09 | | 3.4e09 | |--------------| exports to a latex table as \begin{center} \begin{tabular}{r} \hline 1.2e09 (abs)\\ 2.3\,(-09)\\ 3.4\,(09)\\ \hline \end{tabular} Note that in the first line the number is an exponential, the following 2 are not. I could not find anything in the documentation. What am I missing? orgmode version is 9.1.4, but the same happens with emacs 25.3 built-in version 8.3. gl