Hi, If my org file has:
#+CAPTION[Here is a table]: A nice table #+NAME: tab:niceone | a | Look at my \ref{tab:niceone}. then M-x org-export-dispatch l L gives me: \begin{table}[htb] \caption[Here is a table]{\label{tab-niceone}A nice table} \begin{center} \begin{tabular}{l} a\\ \end{tabular} \end{center} \end{table} Look at my \ref{tab:niceone}. So, the label tab:niceone exports as \label{tab-niceone}. Is that right or am I using the wrong syntax somewhere? Thanks, Myles