From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Schulte Subject: Re: [babel] using #+call for inline results Date: Mon, 27 Jun 2011 11:45:11 -0700 Message-ID: <877h87jeq0.fsf@gmail.com> References: <87mxhaunsi.fsf@ucl.ac.uk> <87mxh9omwb.fsf@gmail.com> <87mxh9pvz8.fsf@ucl.ac.uk> <87sjr1i040.fsf@gmail.com> <4E030676.3070504@christianmoe.com> <87hb7ej1pu.fsf@gmail.com> <87mxh38amn.fsf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:34842) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QbGoF-00089X-A1 for emacs-orgmode@gnu.org; Mon, 27 Jun 2011 14:45:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QbGoD-0007G7-9i for emacs-orgmode@gnu.org; Mon, 27 Jun 2011 14:45:23 -0400 Received: from mail-pz0-f41.google.com ([209.85.210.41]:51057) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QbGoC-0007Fy-Nu for emacs-orgmode@gnu.org; Mon, 27 Jun 2011 14:45:20 -0400 Received: by pzk4 with SMTP id 4so3819200pzk.0 for ; Mon, 27 Jun 2011 11:45:19 -0700 (PDT) In-Reply-To: <87mxh38amn.fsf@ucl.ac.uk> (Eric S. Fraga's message of "Mon, 27 Jun 2011 18:09:04 +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 Eric S Fraga writes: > Eric Schulte writes: >> >> I've just pushed up an implementation for inline call blocks, the new >> syntax is described in the documentation but a simple example is below. >> >> #+source: square >> #+begin_src emacs-lisp :var it=0 >> (* it it) >> #+end_src >> >> Here is a call_square(it=4) stuck in the middle of some prose. >> >> Please let me know how it works and if you have any problems or >> recommendations. >> >> Cheers -- Eric > > Eric, > > this was working on Friday but seems to have stopped working for me now > completely. For instance, your snippet above exports as > > \lstset{language=Lisp} > \begin{lstlisting} > (* it it) > \end{lstlisting} > > > > > Here is a call$_{\mathrm{square}}$(it=4) stuck in the middle of some prose. > > I do not believe I have changed anything in my settings... > > I do note from the git log that you have made quite a few changes. Has > some setting crept in that I need to configure? > Hmm, have you updated Org-mode in the last hour/minutes, there have indeed been a number of changes recently. I believe that the above should be working now, without requiring any special configuration. > > Also, I note from the comments that you expect the inline call to be > whitespace delimited. I haven't tested this but, just in case, could I > request that the delimiting be either whitespace or punctuation? As this behaves currently there need only be whitespace _before_ the inline call line, not after, so most normal punctuation usage should work. For example the following exports as expected on my system. --8<---------------cut here---------------start------------->8--- #+source: square #+begin_src emacs-lisp :var it=0 (* it it) #+end_src Here is a call_square(it=4), stuck in the middle of some prose. --8<---------------cut here---------------end--------------->8--- > There are cases where I would like the inline evaluation to be at the > end of a sentence, for instance, or even something like: > > 25^2=call_square(it=25) > hmm, good example, so what set of characters should be allowed to prefix and postfix such a block? For example, = before should export however = both before and after would be a literal example. Cheers -- Eric > > Thanks, > eric -- Eric Schulte http://cs.unm.edu/~eschulte/