Re: [O] :var problems with R

2012-06-21 Thread suvayu ali
Hi Neuwirth, On Thu, Jun 21, 2012 at 8:14 AM, Neuwirth Erich wrote: > The following works > #+name: xvar > #+begin_src emacs-lisp > "ahaRx" > #+end_src Why are you not using something that you know works? Try the following for example. #+name: xvar |"ahaRx"| #+name: myblock #+begin_src R :var

Re: [O] Beginner's question

2012-06-21 Thread Sebastien Vauban
Hi Erich, Neuwirth Erich wrote: > Can anybody explain why my example does not work? > > #+TBLNAME: example-table > |1| > |2| > |3| > |4| > #+NAME: table-length > #+BEGIN_SRC emacs-lisp :var table=example-table > (length table) > #+END_SRC > > #+RESULTS: table-length > : 4 > #+name: xvar > 123 > #+

Re: [O] [Feature Request] org-mobile edit:add nodes

2012-06-21 Thread Aaron Peromsik
Henning Weiss gmail.com> writes: > > > On Tue, May 22, 2012 at 7:54 PM, Bastien gnu.org> wrote: > > > Hi Henning, > > Henning Weiss gmail.com> writes: > > I have refined the edit nodes patch. Aaron Peromsik has helped me > > with developing and testing it. He hasn't reported any problems w

Re: [O] Format a whole column using ";%.2f" in orgtbl?

2012-06-21 Thread AW
Am Freitag, 15. Juni 2012, 19:01:35 schrieb Michael Brand: > Hi Alexander > > On Fri, Jun 15, 2012 at 4:34 PM, AW wrote: > > [...] > > > > Desired outoput: > > | 100.00 | Value | > > | 150.00 | Value | > > > > #+TBLFM: $1=%s;%.2f > > > > [...] > > What you tried would be > > | 100.00 | Value

Re: [O] Beginner's question

2012-06-21 Thread suvayu ali
On Thu, Jun 21, 2012 at 10:53 AM, Sebastien Vauban wrote: > Put a `:' in front of your value. That way, Babel can locate and read the > value. I didn't know about this syntax! Thanks a lot. :) -- Suvayu Open source is the future. It sets us free.

Re: [O] Beginner's question

2012-06-21 Thread Sebastien Vauban
Hi Suvayu, suvayu ali wrote: > On Thu, Jun 21, 2012 at 10:53 AM, Sebastien Vauban > wrote: >> Put a `:' in front of your value. That way, Babel can locate and read the >> value. > > I didn't know about this syntax! Thanks a lot. :) It simply is the way short results (a few lines) are presented..

[O] Invalid function: with-parsed-tramp-file-name with Perl

2012-06-21 Thread Loris Bennett
Hi, When I try to run a Perl script remotely via ":dir", I get the following error: ,- | org-babel-local-file-name: Invalid function: with-parsed-tramp-file-name `--

[O] [BUG] Export of sub- and superscripts to LaTeX inconsistent in tables?

2012-06-21 Thread Yu
Hello! When I use superscripts/subscripts in tables, they are incorrectly exported to LaTeX -- the placement of math-mode marks ($), braces ({, }) seems mixed up. As an example an excerpt of my current laboratory book. | Calculation | Zn layers | E_tot [eV/atom]

Re: [O] Setting Face of clocking info in Modeline

2012-06-21 Thread Moritz Ulrich
Achim Gratz writes: > Nick Dokos writes: >> That's not right - it went in with commit 37fafb7b and git says: >> >> $ git describe 37fafb7b >> release_7.8.09-248-g37fafb7 > > Git describe by default describes from the object pointed to until the > next annotated tag. Annotated tags live in the m

Re: [O] Setting Face of clocking info in Modeline

2012-06-21 Thread Nick Dokos
Achim Gratz wrote: > Nick Dokos writes: > > That's not right - it went in with commit 37fafb7b and git says: > > > > $ git describe 37fafb7b > > release_7.8.09-248-g37fafb7 > > Git describe by default describes from the object pointed to until the > next annotated tag. Annotated tags live in th

Re: [O] Invalid function: with-parsed-tramp-file-name with Perl

2012-06-21 Thread Nick Dokos
Loris Bennett wrote: > Hi, > > When I try to run a Perl script remotely via ":dir", I get the following > error: > > ,- > | org-babel-local-file-name: Invalid function: with-parsed-tramp-file-name > `---

Re: [O] Setting Face of clocking info in Modeline

2012-06-21 Thread Achim Gratz
Moritz Ulrich googlemail.com> writes: > It's definitely in release_7.8.11 (git commit 6cddf74). That particular tag is on the wrong side of the merge (on master, not on maint). Again, if you want that particular commit, you need to pull from master, not from maint and not any release published s

Re: [O] [BUG] Export of sub- and superscripts to LaTeX inconsistent in tables?

2012-06-21 Thread Nick Dokos
Yu wrote: > Hello! > > When I use superscripts/subscripts in tables, they are incorrectly > exported to LaTeX -- the placement of math-mode marks ($), braces ({, > }) seems mixed up. > > As an example an excerpt of my current laboratory book. > > > | Calculation

[O] graphics size

2012-06-21 Thread Neuwirth Erich
In org-mode for R I am using something like :results output graphics :file first.png :exports both and in the block then here is a plot command. How can I control the dimensions of first.png?

Re: [O] [dev] About a beamer back-end

2012-06-21 Thread Nicolas Goaziou
Hello, Eric S Fraga writes: >> See `org-element-drag-backward' and `org-element-drag-forward'. > > Okay. Will it be easy to bind these to M- etc. to achieve > consistent behaviour? I.e. does org-metaup know what to do with > blocks? I hope that, one day, they will replace current `org-metaup'

[O] Setting a deadline in a template

2012-06-21 Thread Michael Baum
I'm sure there's a simple answer to this but i can't seem to tease it out of the on-line docs. I want to set up a capture template for entering incoming work that automatically sets a deadline for the item when it's entered. Ideally, I'd like it to set a deadline 4 business hours in the future of t

Re: [O] [dev] About a beamer back-end

2012-06-21 Thread Rasmus
Nicolas Goaziou writes: > - There is no separate syntax for \alert{} command: it is the default > output for bold objects (i.e. *text* becomes \alert{text}). Would bold then be archived with some other markup? Or would it just not be possible to get bold text (without defaulting to \bold{·})?

Re: [O] [dev] About a beamer back-end

2012-06-21 Thread Sebastien Vauban
Hi Nicolas, First, a big thank you for your work on this as well... Here, inline, a couple of quick remarks... Nicolas Goaziou wrote: > Eric S Fraga writes: > >>> See `org-element-drag-backward' and `org-element-drag-forward'. >> >> Okay. Will it be easy to bind these to M- etc. to achieve >>

Re: [O] Invalid function: with-parsed-tramp-file-name with Perl

2012-06-21 Thread Loris Bennett
Nick Dokos writes: > Loris Bennett wrote: > >> Hi, >> >> When I try to run a Perl script remotely via ":dir", I get the following >> error: >> >> ,- >> | org-babel-local-file-name: Invalid function: with-parsed-tramp-file-

Re: [O] Invalid function: with-parsed-tramp-file-name with Perl

2012-06-21 Thread Nick Dokos
Loris Bennett wrote: > Nick Dokos writes: > > > Loris Bennett wrote: > > > >> Hi, > >> > >> When I try to run a Perl script remotely via ":dir", I get the following > >> error: > >> > >> ,- > >> | org-babel-local-file-na

Re: [O] Setting a deadline in a template

2012-06-21 Thread Nick Dokos
Michael Baum wrote: > I'm sure there's a simple answer to this but i can't seem to tease it out of > the on-line docs. I > want to set up a capture template for entering incoming work that > automatically sets a deadline for > the item when it's entered. Ideally, I'd like it to set a deadline 4

Re: [O] Setting a deadline in a template

2012-06-21 Thread Sylvain Rousseau
Something like: (format-time-string (car org-time-stamp-formats) (time-add (current-time) (seconds-to-time (* days 60 60 24 Sylvain.

Re: [O] graphics size

2012-06-21 Thread Thomas S. Dye
Neuwirth Erich writes: > In org-mode for R I am using something like > > :results output graphics :file first.png :exports both > > and in the block then here is a plot command. > > How can I control the dimensions of first.png? Please see http://orgmode.org/worg/org-contrib/babel/languages/o

Re: [O] [dev] About a beamer back-end

2012-06-21 Thread Nicolas Goaziou
Hello, Rasmus writes: >> - There is no separate syntax for \alert{} command: it is the default >> output for bold objects (i.e. *text* becomes \alert{text}). > > Would bold then be archived with some other markup? Or would it just > not be possible to get bold text (without defaulting to \bol

Re: [O] :var problems with R

2012-06-21 Thread Thomas S. Dye
Neuwirth Erich writes: > The following works > #+name: xvar > #+begin_src emacs-lisp > "ahaRx" > #+end_src > > #+RESULTS: xvar > : ahaR > #+name: myblock > #+begin_src R :var xxx=xvar > xxx > #+end_src > > #+RESULTS: myblock > : ahaRx > > But when I replace emacs-lisp with R in the first code blo

Re: [O] Format a whole column using ";%.2f" in orgtbl?

2012-06-21 Thread Michael Brand
Hi Alexander On Thu, Jun 21, 2012 at 12:15 PM, AW wrote: > | Values | Desc. | > |+---| > | 100.00 | Value | > | 150.00 | Value | > | 250. | sum | > |+---| > | 500. | End | > #+TBLFM: @4$1=@2$1+@3$1::@5$1=vsum(@I..@II)::$1=$0 +.0; f-2 > > I get at least every number

Re: [O] [dev] About a beamer back-end

2012-06-21 Thread Rasmus
Nicolas Goaziou writes: >> The noframe tag sounds good. > Do you have any example of the use you have in mind? I don't know > what > kind of contents one would like add between frames (excepted notes). - If you are to repeat frames - Imagine a complicated tikz picture which you don't want t

Re: [O] [dev] About a beamer back-end

2012-06-21 Thread suvayu ali
Hi Nicolas, On Thu, Jun 21, 2012 at 4:37 PM, Nicolas Goaziou wrote: > > If you want to try them out (there has been no serious debugging for > them), you can > >  (defalias 'org-metaup 'org-element-drag-backward) > > `org-element-drag-backward' is a strict super-set for `org-metaup'. > I will tr

Re: [O] :var problems with R

2012-06-21 Thread Neuwirth Erich
Meanwhile I learned that #+name: xvar : waterfall #+name: myblock #+begin_src R :var xxx=xvar print(xxx) #+end_src #+RESULTS: myblock : waterfall ans so will #+name: xvar2 : water #+name: myblock2 #+begin_src R :var xxx=xvar2 xxx #+end_src #+RESULTS: myblock2 : water The critical missing p

Re: [O] Format a whole column using ";%.2f" in orgtbl?

2012-06-21 Thread AW
Hi Michael Thank you very much for your quick, qualified and satisfying answer! Alexander > Hi Alexander > > On Thu, Jun 21, 2012 at 12:15 PM, AW wrote: > > | Values | Desc. | > > | > > |+---| > > | > > | 100.00 | Value | > > | 150.00 | Value | > > | > > | 250. | sum | >

[O] Bug: org-clone-subtree-with-time-shift adds a empty :ID:-textline [7.8.11]

2012-06-21 Thread Markus Hetzmannseder
Hallo all, when I do a org-clone-subtree-with-time-shift command, it adds up a "left over" line with just ":ID:" in it. The most simple way to produce it is with cloning just a single TODO item like this on: .. TODO Trockenstellen SCHEDULED: <201

Re: [O] Checkboxes for description lists

2012-06-21 Thread Sebastien Vauban
Hello Nicolas, Nicolas Goaziou wrote: > "Sebastien Vauban" writes: >> Nicolas Goaziou wrote: >>> "Sebastien Vauban" writes: >>> It seems we can't put footnotes in the left part of the description. Is it intended? Could that restriction be removed? >>> >>> That's not really intended, and

Re: [O] [bug] Text macros don't get replaced

2012-06-21 Thread Mike McLean
On Jun 20, 2012, at 6:34 AM, Nicolas Goaziou wrote: > Hello, > > "Sebastien Vauban" > writes: > >> I'm using text macros, and want them to be replaced both in the text body, >> but >> as well in the title or date of the document: >> >> #+MACRO: thesoft ABC >> #+MACRO: thedate November 201

Re: [O] [dev] About a beamer back-end

2012-06-21 Thread Nicolas Goaziou
Hello, "Sebastien Vauban" writes: >> - Sectioning and packages are extracted from `org-e-latex-classes'. >> Since calling Beamer back-end is explicit, it can be applied on any >> tex file, not only when that file starts with >> "\documentclass{beamer}". Additionally, an equivalent to >>

[O] Unable to edit time in timestamps

2012-06-21 Thread Alain Winter
Hi everybody, I'm an absolute beginner with emacs and orgmode. When I insert a timestamp using C-u C-c . I'm unable to edit the time using S-left or S-right even when cursor is placed in the right end of the timestamp. Even in this case, S-left and S-right changes the date. I'm using aquamacs (e

Re: [O] **: Re: [dev] About a beamer back-end

2012-06-21 Thread Sebastien Vauban
Hi Nicolas, > "Sebastien Vauban" writes: > >>> - Sectioning and packages are extracted from `org-e-latex-classes'. >>> Since calling Beamer back-end is explicit, it can be applied on any >>> tex file, not only when that file starts with >>> "\documentclass{beamer}". Additionally, an equiv

Re: [O] Unable to edit time in timestamps

2012-06-21 Thread Nick Dokos
Alain Winter wrote: > Hi everybody, > > I'm an absolute beginner with emacs and orgmode. When I insert a > timestamp using C-u C-c . I'm unable to edit the time using S-left or > S-right even when cursor is placed in the right end of the > timestamp. Even in this case, S-left and S-right change

Re: [O] using an exported zotero library with org-mode

2012-06-21 Thread Yagnesh Raghava Yakkala
Hello Myles, Myles English writes: > Do you know if it exports the collection's (pdf) files too or just a > .bib file? No it doesn't. I wonder what is the purpose of retrieving pdfs from a collection., Since even after retrieval from zotero, (in rdf format) Its hard to search/open a needed pd

Re: [O] Error when changing todo-state [7.8.11]

2012-06-21 Thread Salome =?iso-8859-1?Q?S=F6dergran
Am 20.6.2012 schrieb Nick Dokos: > Eric S Fraga wrote: > > "state" has been changed to "org-state". > > That's probably the cause of the problem, but there is still the question > of whether "state" is used in some customization that the OP has done > or whether there are inconsistencies in the

[O] BBDB Sync (Was: Re: [Orgmode] Re: contact management in org-mode?)

2012-06-21 Thread Sriram Karra
I was searching through the list archives when I came across this old thread. I thought I would point out some recent developments in the BBDB world that might be of general interest to Emacs users. I am the author of a sync tool that can perform bi-directional sync between MS Outlook / Google Con

[O] Org Mode TOOD two way sync tool

2012-06-21 Thread Sriram Karra
I am the author of ASynK (http://karra-asynk.appspot.com), a PIM sync tool and framework written in python that works across a variety of PIM providers such as Outlook, Google and BBDB. I am considering extending ASynK to do a bi-directional sync of Outlook tasks to Org Mode tasks. To be able to do