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