How to disable plantUML inserting the images automatically?
Code block inside a org file:
#+NAME: fig:1 #+CAPTION: IETF-draft [[./draft.png]] #+begin_src plantuml :file draft.png Alice -> Bob: Authentication Request Bob --> Alice: Authentication Response #+end_src export to latex : ->C-c C-e l l
Produces two images: 1. As the result of [[./draft.png]] together with CAPTION, NAME.
\begin{figure}[htb] \centering \includegraphics[height=0.6\textheight,keepaspectratio,width=.9\linewidth]{./pbk.png} \caption{\label{fig:pbk-draft}PBK-framework-IETF-draft} \end{figure} 2. The following img is inserted by plantUML automatically ( I want to disable this, how to do this ? }
\includegraphics[height=0.6\textheight,keepaspectratio,width=.9\linewidth]{draft.png} -- Edited following the request from @Emacs User--
Code block inside a org file:
#+NAME: fig:1 #+CAPTION: IETF-draft #+begin_src plantuml :file draft.png Alice -> Bob: Authentication Request Bob --> Alice: Authentication Response #+end_src export to latex : ->C-c C-e l l
Produces just the second image and I lose the control over the CAPTION, FIG NAME references; the latex code is the following:
\includegraphics[height=0.6\textheight,keepaspectratio,width=.9\linewidth]{draft.png} 