emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Problems with Org-Mode export


From: Michael Hannon
Subject: Re: [O] Problems with Org-Mode export
Date: Wed, 21 Sep 2011 12:10:08 -0700 (PDT)

Thanks, Nick.  I just grabbed:

    Org-mode version 7.7 (release_7.7.314.g12f0)

and don't seem to have the problem any more.

-- Mike


From: Nick Dokos <address@hidden>
To: Michael Hannon <address@hidden>
Cc: address@hidden; Org-Mode List <address@hidden>
Sent: Wednesday, September 21, 2011 7:37 AM
Subject: Re: [O] Problems with Org-Mode export

Michael Hannon <address@hidden> wrote:

> Nick Dokos <address@hidden> wrote:
>
> > Org-mode version 7.7 (release_7.7.224.g6e14) GNU Emacs 24.0.50.2
> > (x86_64-unknown-linux-gnu, GTK+ Version 2.22.0) of 2011-09-13
>
> > I'll pull the newest bits and try again.
>

I pulled from latest and reran both the original test file and the test
file below. I get no errors either with my standard config or with a
minimal .emacs in either case.

Version info for reference:

Org-mode version 7.7 (release_7.7.311.g0c099)

GNU Emacs 24.0.50.2 (x86_64-unknown-linux-gnu, GTK+ Version 2.22.0) of 2011-09-13

This is on Ubuntu 10.10.

Nick

> Thanks, Nick.  This is getting curiouser and curiouser.  I can now reliably
> get documents exported using the vanilla 7.7 Org-Mode, but not with the
> development version I currently have installed:
>
>    Org-mode version 7.7 (release_7.7.304.g9da4)
>
> I suspect that the following bit of the error message is the relevant one:
>
>    org-babel-R-evaluate: Wrong number of arguments: #[(session body result-type
>    result-params column-names-p row-names-p
>
> but I don't know what to make of it.
>
> In order to simplify the discussion, I've been working with some Org code that
> I took from the "worg" web site.  Please see below for details.
>
> I've also appended the pieces of my .emacs file that relate to finding Org
> files.
>
> At this point I guess I'm ready to declare victory and slink away, but it
> WOULD be interesting to know what's going on.
>
> -- Mike
>
> ----------
>
> #+TITLE: Test
> #+AUTHOR: Michael Hannon
> #+EMAIL: address@hidden
> #+BABEL: :session *R* :cache yes :results output graphics :exports both :tangle yes
>
> #### Example taken from:
> ####    http://orgmode.org/worg/org-contrib/babel/how-to-use-Org-Babel-for-R.html
>
> * Example of Org-Babel for R Literate Programming
> ** R text output
> A simple summary.
> #+begin_src R
>  x <- rnorm(10)
>  summary(x)
> #+end_src
>
> ** R graphics output
> Note we use the object =x= generated in previous code block, thanks to
> the header option =:session *R*=.  The output graphics file is
> =a.png=.
>
> #+begin_src R  :file a.png
>  y <- rnorm(10)
>  plot(x, y)
> #+end_src
>
> Same plot with larger dimension:
>
> #+begin_src R  :file b.png :width 800 :height 800
>  plot(x, y)
> #+end_src
>
> ---------- Org-Mode path variables, standard and devel versions
>
> (setq load-path (cons "/usr/local/emacs.d/ssh" load-path))
> (require 'ssh)
>
> ;;;;;;(setq load-path (cons "/usr/local/emacs.d/org-mode/org-7.7/lisp" load-path))
>
> ;;;;;;(setq load-path (cons "/usr/local/emacs.d/org-mode/org-7.7/contrib/lisp" load-path))
>
> (setq load-path (cons "/usr/local/emacs.d/org-mode/org-devel/org-mode/lisp" load-path))
>
> (setq load-path (cons "/usr/local/emacs.d/org-mode/org-devel/org-mode/contrib/lisp" load-path))
>
> (require 'org-install)
>
>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]