Hi,
With noweb, one can continue a source block that one started
earlier. Can this not be done with Babel?
If not, I'm struggling a little with how to do LP using Babel...
Thanks.
kinouchou wrote:
> Do you know if it's possible for a table in another file? Because in the
> manuel i read it's possible but I don't have result.
>
> (sorry for my english)
> Christelle
>
I assume you mean the "remote references" in section 3.5.1 in the manual:
,
| You may also reference
Carsten Dominik writes:
> Hi Remi,
>
> On Apr 3, 2011, at 1:45 PM, Rémi Vanicat wrote:
>
>> Hello list,
>>
>> When looking at the agenda on my phone, I can't see the hours of the
>> events I'm looking at. It seem the information is available (it's in the
>> agenda.org that is used by android's m
> Do you know if it's possible for a table in another file? Because in
> the manuel i read it's possible but I don't have result.
M-x orgtbl-mode?
--
Thank you Sebastien,
This works perfectly.
--
Darlan
At Tue, 07 Jun 2011 23:53:59 +0200,
"Sebastien Vauban" wrote:
>
> Hi Darlan,
>
> Darlan Cavalcante Moreira wrote:
> > A nice feature of the org-agenda is the possibility to define two letter
> > combinations for the custom commands. From th
Hello,
Do you know if it's possible for a table in another file? Because in the
manuel i read it's possible but I don't have result.
(sorry for my english)
Christelle
On Tue, Jun 7, 2011 at 7:22 PM, Michael Brand wrote:
> Hi Karl
>
> You need additionally $# from "Field coordinates in formulas
Hello,
I've (stolen?) the following custom agenda view.
#+begin_src emacs-lisp
("F" "Agenda of upcoming deadlines (6 months)"
agenda ""
((org-agenda-ndays 1)
(org-deadline-warning-days 183)
(org-agenda-include-a
Cool! I tested it on a much-too-long slideshow, and noticed one
problem, though: each new slide appeared a little further to the left.
Yours,
Christian
On 6/7/11 8:56 PM, Vinh Nguyen wrote:
After the recent org-mode to S5 discussion, I stumbled onto
[these](https://gist.github.com/509761) co
Hi Darlan,
Darlan Cavalcante Moreira wrote:
> A nice feature of the org-agenda is the possibility to define two letter
> combinations for the custom commands. From the manual I could not see how to
> do this with org-capture and I'm guessing it is not possible right now.
It already is... See an e
Hello list,
A nice feature of the org-agenda is the possibility to define two letter
combinations for the custom commands. From the manual I could not see how
to do this with org-capture and I'm guessing it is not possible right now.
Of course one can always define a single letter template for e
Tassilo Horn writes:
> Vinh Nguyen writes:
>
>> After the recent org-mode to S5 discussion, I stumbled onto
>> [these](https://gist.github.com/509761) code. It offers a way to
>> export org files to HTML5 presentations. I think it looks quite nice.
>> I see it being better than S5 in that no
Hi Michael,
On Tue, Jun 7, 2011 at 21:53, Michael Brand wrote:
> I am on the way of tracking down an (Org?) buglet and now
> outline-level tries to strike me with my lack of experience with
> "Match Data" of Emacs search and I would like to ask for some help to
> understand.
>
> M-: (outline-leve
Vinh Nguyen writes:
> After the recent org-mode to S5 discussion, I stumbled onto
> [these](https://gist.github.com/509761) code. It offers a way to
> export org files to HTML5 presentations. I think it looks quite nice.
> I see it being better than S5 in that no "ui" folder is required.
> Wha
Carsten Dominik writes:
> I think a better strategy would be to find these additional
> header lines right before this section of the recalculate function:
>
> ;; Now evaluate the column formulas, but skip fields covered by
> ;; field formulas
>
> and mark those extra header lines with the
> There is so much documentation, tutorials, information available on
> org-mode, so I'm sorry if I'm asking a dumb question that's already
> been covered extensively elsewhere. I tried searching Google and this
> mailing list, but found nothing that addresses this.
How about looking at the manua
On 6/7/11 12:04 PM, "Nick Dokos" wrote:
> wrote:
>
>>I do have a big huge thread stack trace that Aquamacs generated, if that
>> would be helpful.
>>
>
>It wouldn't hurt.
OK, here it is:
In GNU Emacs 23.3.1 (i386-apple-darwin9.8.0, NS apple-appkit-949.54)
of 2011-03-18 on braeburn.aquamacs
> Detlef Steuer :
> Hi,
> while looking for the cause of my "checkbox problem" I found,
> that all works fine, if I issue
> make clean
Ok, I ran into this problem today, on an emacs 23 with git org-mode, on
debian testing, ("wheezy"), and I googled for the error message and
found this threa
After the recent org-mode to S5 discussion, I stumbled onto
[these](https://gist.github.com/509761) code. It offers a way to
export org files to HTML5 presentations. I think it looks quite nice.
I see it being better than S5 in that no "ui" folder is required.
What do you all think? Is it worth
Hi Michael,
match data get set by searches. One can inhibit match-data being
cluttered by using the `save-match-data' macro (you should probably do
so when using searches in a lisp program).
Outline.el seems to make very frequent use of this 'global' data;
instead of passing this data on via func
Thanks to both of you !
Michael Markert writes:
> On 7 Jun 2011, Detlef Steuer wrote:
>
>> On Mon, 6 Jun 2011 23:10:12 -0500
>> Ugur Ozdemir wrote:
>>
>>> Hi,
>>>
>>> As a novice I was wondering if there is an easy way of creating an
>>> agenda file for a certain number of days starting from today. I know
>>> I can do
Michael Brand writes:
> Hi all
>
> I am on the way of tracking down an (Org?) buglet and now
> outline-level tries to strike me with my lack of experience with
> "Match Data" of Emacs search and I would like to ask for some help to
> understand.
>
> M-: (outline-level) returns a value that I don'
Hi Karl
You need additionally $# from "Field coordinates in formulas" described here:
http://orgmode.org/manual/References.html#References
and Calc vector subscript:
#+TBLFM: @2 = subscr(remote(orgtblA, @2$2..@2$7), $#)
Michael
On Tue, Jun 7, 2011 at 17:55, Karl Voit wrote:
> I want to define "
wrote:
> Hi,
>
> I use org-mode a lot with "BEGIN_SRC R" sections that I execute manually
> with C-c C-c in an *R* session buffer. Sometimes I go to that session
> buffer and execute some code manually, and occasionally I turn on
> debugging for a function with "debug(func)".
>
> If I then go
Hi all
I am on the way of tracking down an (Org?) buglet and now
outline-level tries to strike me with my lack of experience with
"Match Data" of Emacs search and I would like to ask for some help to
understand.
M-: (outline-level) returns a value that I don't understand yet. The
number does not
Hi!
I want to define "orgtblB line 2 (row 1 to 6)" should contain the
values "from orgtblA, last line, row 2 to 7".
I tried
#+TBLFM: @2=remote(orgtblA,@2$2..@2$7)
and
#+TBLFM: @2$1..@2$6=remote(orgtblA,@2$2..@2$7)
but that results in a list of 6x 5 values in each field in row 2.
Her
Hi,
I use org-mode a lot with "BEGIN_SRC R" sections that I execute manually
with C-c C-c in an *R* session buffer. Sometimes I go to that session
buffer and execute some code manually, and occasionally I turn on
debugging for a function with "debug(func)".
If I then go back to my org-mode buffe
Nick Dokos writes:
Hi Nick,
>> 2. Timezone: I live in Germany and thus all my timestamps are CEST. The
>>exported ics file properly declare X-WR-TIMEZONE:CEST. However,
>>since we also have DST, in summer all appointments show up 2 hours
>>late, and in winter my appointments show u
Gustav Wikström writes:
> Hello!
>
>
>
> I'm trying to do some calculations on a clocktable in org-mode. But the way
> times are displayed as strings with a colon between hours and minutest makes
> it a bit difficult.. Does someone have any tips on how to overcome this
> obstacle?
>
Hi Gustav,
Hi Gustav
There was a discussion about that here:
http://thread.gmane.org/gmane.emacs.orgmode/39487
Michael
2011/6/7 Gustav Wikström :
> I'm trying to do some calculations on a clocktable in org-mode. But the way
> times are displayed as strings with a colon between hours and minutest makes
> it
Tassilo Horn wrote:
> Hi all,
>
> I export all my org-files as icalendar files, push them to some
> webserver from which google calendar imports them. Basically, that
> works pretty good except for two things:
>
> 1. Encoding: All Umlauts and other non-ASCII chars show up as boxes in
>goog
Carsten Dominik wrote:
> Hi everyone,
>
> I am trying to use the google weather in Org-mode for the first time, =
> but I am always getting a 443 error when I evaluate something like
>
> (org-google-weather "Amsterdam")
>
> I am not sure where to look for what might causing this - any pointers
Carsten Dominik writes:
>
> I am trying to use the google weather in Org-mode for the first time,
> but I am always getting a 443 error when I evaluate something like
>
> (org-google-weather "Amsterdam")
>
> I am not sure where to look for what might causing this - any pointers would
> be
It lo
Hello!
I'm trying to do some calculations on a clocktable in org-mode. But the way
times are displayed as strings with a colon between hours and minutest makes
it a bit difficult.. Does someone have any tips on how to overcome this
obstacle?
Best regards
Gustav
Hi all,
I export all my org-files as icalendar files, push them to some
webserver from which google calendar imports them. Basically, that
works pretty good except for two things:
1. Encoding: All Umlauts and other non-ASCII chars show up as boxes in
google calendar. When visiting some expor
On 07/06/11 07:53, Carsten Dominik wrote:
Hi everyone,
I am trying to use the google weather in Org-mode for the first time, but I am
always getting a 443 error when I evaluate something like
(org-google-weather "Amsterdam")
I am not sure where to look for what might causing this - any pointe
On 7 Jun 2011, Detlef Steuer wrote:
> On Mon, 6 Jun 2011 23:10:12 -0500
> Ugur Ozdemir wrote:
>
>> Hi,
>>
>> As a novice I was wondering if there is an easy way of creating an
>> agenda file for a certain number of days starting from today. I know
>> I can do some custom agenda commands if I do s
On 6 Jun 2011, at 10:38, Christian Moe wrote:
> ** languir
> :PROPERTIES:
> :Word_class: verb
> :Transitivity: intr
> :END:
> (*for* après; *to do* de faire)
>
> It's a pain to do, and because of outline folding, it could be a pain to look
> up meanings, and you might need to do some
Thank you for the link.
On Tue, Jun 7, 2011 at 4:08 AM, Christian Moe wrote:
> Hi,
>
> Thanks, these pointers were really helpful -- whether I end up doing
> something similar, or using them to work out how I want to do this in Org,
> or using other tools I was able to discover in five minutes a
On Mon, 6 Jun 2011 23:10:12 -0500
Ugur Ozdemir wrote:
> Hi,
>
> As a novice I was wondering if there is an easy way of creating an agenda
> file for a certain number of days starting from today. I know I can do some
> custom agenda commands if I do some study but I guess I am trying to free
>
40 matches
Mail list logo