From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Leha Subject: Re: LATEX text in figure environment Date: Tue, 24 Nov 2015 14:48:25 +0000 Message-ID: References: <87io4rbkf4.fsf@gmx.us> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51909) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1Ete-0003yd-9d for emacs-orgmode@gnu.org; Tue, 24 Nov 2015 09:48:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a1Etb-0000il-0E for emacs-orgmode@gnu.org; Tue, 24 Nov 2015 09:48:42 -0500 Received: from plane.gmane.org ([80.91.229.3]:58016) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1Eta-0000iT-Pl for emacs-orgmode@gnu.org; Tue, 24 Nov 2015 09:48:38 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1a1EtT-0000II-Cx for emacs-orgmode@gnu.org; Tue, 24 Nov 2015 15:48:31 +0100 Received: from 193.63.223.193 ([193.63.223.193]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 24 Nov 2015 15:48:31 +0100 Received: from andreas.leha by 193.63.223.193 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 24 Nov 2015 15:48:31 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Rainer M Krug writes: > Rasmus writes: > >> Rainer M Krug writes: >> >>> Hi >>> >>> I want to add a todo note (from the todonotes package) in a figure >>> environment. What I want should look as follow, so that the to note sits >>> in the environment (based on [http://tex.stackexchange.com/a/256802/6941] >>> ): >>> >>> ,---- >>> | \begin{figure}[htb] >>> | \centering >>> | \includegraphics[width=.9\linewidth]{fig-strategies.pdf} >>> | \caption{from \cite{Roura-Pascual2009_rmkc}} >>> | \todo[inline]{This figure needs to be redone and further info added} >>> | \end{figure} >>> `---- >> >> This works up to the order of caption and the todo macro. >> >> #+caption: from \cite{Roura-Pascual2009_rmkc} >> #+begin_figure >> [[file:fig-strategies.pdf]] >> #+latex: \todo[inline]{This figure needs to be redone and further info added} >> #+end_figure > > Thanks, > > Rainer Hi Rainer, And if you do not mind the todonote in the caption (should work, I guess) this might work as well: #+CAPTION: from cite:Roura-Pascual2009_rmkc @@latex:\todo[inline]{This figure needs to be redone and further info added}@@ [[file:fig-strategies.pdf]] Best, Andreas