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
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
> #+
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
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
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.
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..
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
`--
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]
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
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
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
> `---
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
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
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?
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'
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
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{·})?
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
>>
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-
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
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
Something like:
(format-time-string
(car org-time-stamp-formats)
(time-add (current-time) (seconds-to-time (* days 60 60 24
Sylvain.
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
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
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
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
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
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
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
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 |
>
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
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
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
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
>>
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
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
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
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
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
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
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
41 matches
Mail list logo