From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vikas Rawal Subject: Latex export of tables Date: Fri, 12 Apr 2013 13:36:01 +0530 Message-ID: <20130412080600.GA18235@panahar> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:52010) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQYzr-0006Bj-3T for emacs-orgmode@gnu.org; Fri, 12 Apr 2013 04:06:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UQYzo-000207-UJ for emacs-orgmode@gnu.org; Fri, 12 Apr 2013 04:06:10 -0400 Received: from mail-pa0-f48.google.com ([209.85.220.48]:49672) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UQYzo-000203-OP for emacs-orgmode@gnu.org; Fri, 12 Apr 2013 04:06:08 -0400 Received: by mail-pa0-f48.google.com with SMTP id lj1so1332078pab.21 for ; Fri, 12 Apr 2013 01:06:08 -0700 (PDT) Content-Disposition: inline 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 I am using org-mode version 8.0-pre (release_8.0-pre-247-gbc3ccd @ /home/vikas/lisp/org-mode/lisp/). I have a table generated by a source block in a document that I would like to export to latex. In the exported tex file, I would like org to insert a line like the following between \end(tabular} and \end{table} \begin{minipage}{\textwidth} \tiny Note: Some descriptive text here. \end{minipage} Can somebody suggest what I could do to insert this? I have been playing with something like the following but am not able to get it right. #+LATEX: { #+NAME: table-name-out #+CAPTION: Average gross value of output and net income from cultivation of wheat intercropped with rapeseed, by class, Mahatwar (Rupees per acre, 2005-06 prices) #+attr_latex: :environment tabulary :width 15cm :align l|RRR #+RESULTS: source_code_name | A | B | C | |---+---+---| | 1 | 1 | 1 | | 1 | 2 | 3 | | 2 | 2 | 4 | #+LATEX: \begin{minipage}{} \tiny Note: Some descriptive text here.#\end{minipage} } Vikas