From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Robert Klein" Subject: library of babel, bootabs question Date: Fri, 08 Oct 2010 13:23:35 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=48391 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P4B37-0001Sd-S1 for emacs-orgmode@gnu.org; Fri, 08 Oct 2010 07:23:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P4B37-0002hm-0L for emacs-orgmode@gnu.org; Fri, 08 Oct 2010 07:23:41 -0400 Received: from gate1.mpip-mainz.mpg.de ([194.95.63.248]:24770) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P4B36-0002hc-S7 for emacs-orgmode@gnu.org; Fri, 08 Oct 2010 07:23:40 -0400 Received: from [10.20.2.71] (port=36007 helo=vmmail.mpip-mainz.mpg.de) by gate1.mpip-mainz.mpg.de with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1P4B32-0006I6-2P for emacs-orgmode@gnu.org; Fri, 08 Oct 2010 13:23:36 +0200 Received: from pckr105.mpip-mainz.mpg.de ([10.20.70.201]) by vmmail.mpip-mainz.mpg.de with esmtp (Exim 4.66) (envelope-from ) id 1P4B31-0001jN-Pd for emacs-orgmode@gnu.org; Fri, 08 Oct 2010 13:23:35 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org Mode I'm trying to export a document to LaTeX, using a lob-call to booktabs for a table. Unfortunately I seem to get two tables, the original one and the one from the lob call. The table looks like this: #+tblname: ma |-----------------------+-----------------------+-------------| | row 1 cell 1 header | row 1 cell 2 header | r1c3 header | | row 2 cell 1 header | row 2 cell 2 header | r2c3 header | |-----------------------+-----------------------+-------------| | some text inside tabl | some text, some text | more text | | more text | more text | more text | | more text | more text | more text | |-----------------------+-----------------------+-------------| #+call: booktabs(table=ma, align="lll") :results latex :exports results Did I forget some option? I didn't find any in the manuals. Thanks a lot for any help. Robert