I used to be able to pass the CUSTOM_ID
property as custom \label
once exported to LaTeX. A snippet like this:
* Introduction
:PROPERTIES:
:CUSTOM_ID: custom_label
:END:
Would export to:
\section{Introduction}
\label{sec-1}
\label{custom_label}
I am using Org-mode version 8.2.7c and that is not the case anymore, the org-mode snippet above exports to:
\section{Introduction}
\label{sec-1}
Because of that, I need to add custom labels everywhere, like:
* Introduction
:PROPERTIES:
:CUSTOM_ID: custom_label
:END:
\label{custom_label}
Is there a better way to pass the CUSTOM_ID
property with the new org-latex-export-as-latex
way?
Or, more generally, is there a systematic way to pass any PROPERTIES
when exporting to LaTeX?
Thank you for any help or pointer I could use.
Go to [[#custom_label]]
exports toGo to \ref{sec-1}
. Why is not that good enough for you? – rvf0068org-mode
to publish books (via LaTeX). Some books are like a dictionary, where each entry has its own key, dictated by the publisher. I need to be able to access those 'keys' (as labels) so to print them properly (as running titles, or in other places). – gsl