From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thorsten Grothe Subject: Export all radio tables off a document Date: Thu, 05 Dec 2013 14:31:03 +0100 Message-ID: <52A08017.1010608@th-grothe.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32831) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VoZ1W-0000IX-SZ for emacs-orgmode@gnu.org; Thu, 05 Dec 2013 08:31:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VoZ1Q-0007XH-Se for emacs-orgmode@gnu.org; Thu, 05 Dec 2013 08:31:22 -0500 Received: from mx02a.posteo.de ([89.146.194.168]:41859) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VoZ1Q-0007XA-NG for emacs-orgmode@gnu.org; Thu, 05 Dec 2013 08:31:16 -0500 Received: from localhost (localhost.localdomain [127.0.0.1]) by mail.posteo.de (Postfix) with ESMTP id 2B696347F47 for ; Thu, 5 Dec 2013 13:31:13 +0000 (UTC) Received: from posteo.de ([10.125.125.134]) by localhost (amavis1.posteo.de [10.125.125.165]) (amavisd-new, port 10026) with ESMTP id SdUPYA1p-PlS for ; Thu, 5 Dec 2013 14:31:03 +0100 (CET) Received: from mail.posteo.de (localhost [127.0.0.1]) by mail.posteo.de (Postfix) with ESMTPSA id A74CC203E9077 for ; Thu, 5 Dec 2013 14:31:03 +0100 (CET) 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 all, this is my first post to this list, so please be patient with me :-) I have many radio tables in my document with this structure: \begin{comment} #+TBLNAME: sec-10 #+ORGTBL: SEND sec-10 orgtbl-to-latex :skip 3 :splice t |--------------------+---------------+---------------| | Anschaffungskosten | Nutzungsdauer | AfA in =A4/Std. | |--------------------+---------------+---------------| | 720000 | 36000 | 20 | |--------------------+---------------+---------------| \end{comment} A C-c C-c exports the table to Latex like this: \begin{tabular}{lll} % BEGIN RECEIVE ORGTBL sec-10 720000 & 36000 & 20\\ % END RECEIVE ORGTBL sec-10 \end{tabular} It would be very nice to automatically export *all* tables of the=20 document to their corresponding latex tables in the same document. I=20 found a function that does this for calculations in org-tables: M-x org-table-recalculate-buffer-tables but I found nothing similar for updating and exporting them automatically= . Is this possible? Thanks in advance! Regards Th. Grothe