Is it possible to highlight latex commands in export block?
In my org document, latex commands in source code block appear with
keywords highlighted. For example:
#+begin_src latex
\begin{figure}
[omitted latex commands]
\label{fig:setpic}
\end{figure}
#+end_src
Here "\begin" and "\end" are highlighted in bold. "figure" is
highlighted in a different color. "fig:setpic" is highlighted in
another color.
But when these same commands are inside export block, they appear as
plain text.
#+begin_export latex
\begin{figure}
[omitted latex commands]
\label{fig:setpic}
\end{figure}
#+end_export
Here "begin", "end", "figure", "fig:setpic" all appear as plain text.
Thanks,
Naresh