From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jakob Lombacher Subject: Latex Export: Place Caption Below Table Date: Wed, 28 Sep 2011 13:26:43 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:35125) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8sHp-0007XM-TW for emacs-orgmode@gnu.org; Wed, 28 Sep 2011 07:26:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R8sHl-000195-Ou for emacs-orgmode@gnu.org; Wed, 28 Sep 2011 07:26:49 -0400 Received: from mail-wy0-f169.google.com ([74.125.82.169]:36265) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8sHl-00018r-FV for emacs-orgmode@gnu.org; Wed, 28 Sep 2011 07:26:45 -0400 Received: by wyf22 with SMTP id 22so8760039wyf.0 for ; Wed, 28 Sep 2011 04:26:44 -0700 (PDT) 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, if I export a document to latex, the caption of a table is always on the top. How can I place it at the bottom? Is there a parameter to config it? Thanks Jakob Examaple #+LABEL: tbl:asdf #+CAPTION: ????? | | | "leads to:" --------------- \begin{table}[htb] \caption{?????} \label{tbl:datenstrukturen} ..... \end{table} I need: ---------- \begin{table}[htb] ..... \caption{?????} \label{tbl:datenstrukturen} \end{table}