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}
