From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: turn off monospace in src result Date: Thu, 17 Jul 2014 17:38:15 -0400 Message-ID: <87k37b4qew.fsf@alphaville.bos.redhat.com> References: <87y4wsl062.fsf@channing.harvard.edu> <8761jpl6gl.fsf@bzg.ath.cx> <87fvi0ufly.fsf_-_@channing.harvard.edu> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59818) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X7tNv-00045X-Bh for emacs-orgmode@gnu.org; Thu, 17 Jul 2014 17:38:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X7tNn-0005xz-Ba for emacs-orgmode@gnu.org; Thu, 17 Jul 2014 17:38:39 -0400 Received: from plane.gmane.org ([80.91.229.3]:46431) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X7tNn-0005xs-4G for emacs-orgmode@gnu.org; Thu, 17 Jul 2014 17:38:31 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1X7tNl-0002pH-Il for emacs-orgmode@gnu.org; Thu, 17 Jul 2014 23:38:29 +0200 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 17 Jul 2014 23:38:29 +0200 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 17 Jul 2014 23:38:29 +0200 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 Andreas Leha writes: > Hi regcl, > > regcl writes: > >> With this line in my .org file ... >> >> This is src_R{foo<-"FOO"; paste(foo)}. >> >> ... when I publish to html or pdf, I get ... >> >> This is FOO. >> >> ... which is wonderful, except that "FOO" is monospace. >> >> Can I turn off monospace for all results of inline source? > > I do not know, how to do that for all inline source blocks. But you can > turn it off > 1. per code block as in src_R[:results raw]{foo<-"FOO"; paste(foo)} Looks like --8<---------------cut here---------------start------------->8--- This is src_R[:results raw]{foo<-"FOO"; paste(foo)}. --8<---------------cut here---------------end--------------->8--- produces a newline after the evaluated code block in the HTML file, which is rendered as a space between the word FOO and the period. Bug? Nick