Nicolas, Thanks for following up on this with me. I now understand that this is intentional. Could you just briefly let me know why this is a feature? I am assuming that this is so that org references are unique should you accidentally reuse a label? Best, Andrew On Wed, Sep 16, 2015 at 11:26 AM Nicolas Goaziou wrote: > Hello, > > Andrew Davis writes: > > > #+CAPTION: Plot of something interesting. > > #+ATTR_LaTeX: :width \textwidth > > #+NAME: fig:result_plot > > file:./img/plot.pdf > > > > This method of placing plots into an org document no longer > > works. Previously, this would correctly produce the figure with > > a consistent label for internal references within the org document and > > the exported LaTeX document. Now, the export results in the following > > TeX code: > > > > \begin{figure}[htb] > > \centering > > \includegraphics[width=\textwidth]{./img/plot.pdf} > > \caption{\label{fig:orgparagraph1} > > Plot of something interesting.} > > \end{figure} > > > > As it can be seen above, the intended label of fig:result_plot is no > > longer exported. This breaks any reference to \ref{fig:result_plot} in > > the LaTeX document while the label of ref:fig:result_plot only works > > within the org document. > > This is usually not an issue since [[fig:result_plot]] will results in > \ref{fig:result_plot}. > > In any case, see `org-latex-prefer-user-labels'. > > Regards, > > -- > Nicolas Goaziou >