From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Millar Subject: Re: Inline source does not evaluate when inserted insie a minipage environment Date: Sun, 24 Sep 2017 16:59:24 -0400 Message-ID: <73cbd2b0-49a9-3006-75a7-2a8397587d90@verizon.net> References: <87mv5lms1a.fsf@delle7240.chemeng.ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36685) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dwDzw-0006k2-Pe for emacs-orgmode@gnu.org; Sun, 24 Sep 2017 16:59:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dwDzr-0008CR-Pr for emacs-orgmode@gnu.org; Sun, 24 Sep 2017 16:59:32 -0400 Received: from omr-m003e.mx.aol.com ([204.29.186.3]:49497) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dwDzr-0008Bl-MK for emacs-orgmode@gnu.org; Sun, 24 Sep 2017 16:59:27 -0400 Received: from mtaout-mae01.mx.aol.com (mtaout-mae01.mx.aol.com [172.26.254.141]) by omr-m003e.mx.aol.com (Outbound Mail Relay) with ESMTP id 3BDFC380009E for ; Sun, 24 Sep 2017 16:59:26 -0400 (EDT) Received: from [10.0.0.2] (0x5b31302e302e302e325d [74.106.198.18]) by mtaout-mae01.mx.aol.com (MUA/Third Party Client Interface) with ESMTPA id 8986038000099 for ; Sun, 24 Sep 2017 16:59:25 -0400 (EDT) In-Reply-To: <87mv5lms1a.fsf@delle7240.chemeng.ucl.ac.uk> Content-Language: en-US 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" To: "emacs-orgmode@gnu.org" On 09/23/2017 10:02, Eric S Fraga wrote: > On Friday, 22 Sep 2017 at 15:56, Charles Millar wrote: > > [...] > >> However, when I C-c C-c the same code when inside a minipage, I get >> the message " 'C-c C-c' can do nothing useful here" >> \begin{minipage}[t]{4.0in} This is some text. >> Some more test with an inline=C2=A0 src_sh[:results raw]{echo 1} >> a bit more >> \end{minipage} > I solve this aspect, and more generally allow the use of org formatting > directives within the text by doing: > > #+latex: \begin{minipage}[t]{4.0in} > This is some text. Some more test with an inline src_sh[:results raw]{e= cho 1} > a bit more > #+latex: \end{minipage} > Thank you.