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: Fri, 22 Sep 2017 20:44:34 -0400 Message-ID: <733d05a9-baeb-3a95-e405-d678f695c2e7@verizon.net> References: <87zi9m5szp.fsf@nicolasgoaziou.fr> 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]:35065) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dvYYj-0005Qx-25 for emacs-orgmode@gnu.org; Fri, 22 Sep 2017 20:44:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dvYYf-0003h5-W9 for emacs-orgmode@gnu.org; Fri, 22 Sep 2017 20:44:41 -0400 Received: from omr-m017e.mx.aol.com ([204.29.186.19]:34551) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dvYYf-0003gs-Rs for emacs-orgmode@gnu.org; Fri, 22 Sep 2017 20:44:37 -0400 Received: from mtaout-aaj01.mx.aol.com (mtaout-aaj01.mx.aol.com [172.27.3.205]) by omr-m017e.mx.aol.com (Outbound Mail Relay) with ESMTP id 3698138000B7 for ; Fri, 22 Sep 2017 20:44:37 -0400 (EDT) Received: from [192.168.1.128] (0x5b3139322e3136382e312e3132385d [70.195.142.4]) by mtaout-aaj01.mx.aol.com (MUA/Third Party Client Interface) with ESMTPA id 3B04938000086 for ; Fri, 22 Sep 2017 20:44:35 -0400 (EDT) In-Reply-To: <87zi9m5szp.fsf@nicolasgoaziou.fr> 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/22/17 17:22, Nicolas Goaziou wrote: > Hello, > > Charles Millar writes: > >> This problem may not be limited to just \begin{minipage}, etc., but to >> other latex commands which may precede text which contains inline >> source code >> >> The following inline code evaluates as expected to 1 >> >> This is some text. >> Some more test with an inline=C2=A0 src_sh[:results raw]{echo 1} >> a bit more >> >> 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} > This is not a bug. > > \begin{minipage} > ... > \end{minipage} > > defines a LaTeX environment, i.e., pure LaTeX code, and Org doesn't loo= k > into this. This is like $...$ or \(...\), but as block element. Thank you.