Re: [O] Macros in included file not expanded in batch export

2014-07-15 Thread Suvayu Ali
Hi Nick, On Mon, Jul 14, 2014 at 10:50:53PM -0400, Nick Dokos wrote: Suvayu Ali fatkasuvayu+li...@gmail.com writes: Hi, I am trying to export to LaTeX in batch mode, but it seems the exporter ignores macros defined in included files when exporting in batch mode. I tried to export

Re: [O] Test failures

2014-07-15 Thread Achim Gratz
Nick Dokos ndokos at gmail.com writes: Apparently these tests assume that the org info file can be found, but the `make clea'n that is done at the beginning of make test wipes it out. That's probably because I'm working out of the cloned git tree, but if possible, I would like `make test' to

Re: [O] Macros in included file not expanded in batch export

2014-07-15 Thread Nick Dokos
Suvayu Ali fatkasuvayu+li...@gmail.com writes: Hi Nick, On Mon, Jul 14, 2014 at 10:50:53PM -0400, Nick Dokos wrote: Suvayu Ali fatkasuvayu+li...@gmail.com writes: Hi, I am trying to export to LaTeX in batch mode, but it seems the exporter ignores macros defined in included files

Re: [O] emails written in Org Mode

2014-07-15 Thread Alan Schmitt
On 2014-07-15 02:57, Thorsten Jolitz tjol...@gmail.com writes: Hadn't have the time to try Gnorb, but the combination of gnusorg is definitely interesting for me. I highly recommend this library. I haven't scratched the surface, but one great aha moment was when I was reading in email in gnus

Re: [O] emails written in Org Mode

2014-07-15 Thread Joseph Vidal-Rosset
Hello, This is very interesting indeed. But is there somewhere a good tutorial to read or video to see ? It would be helpful for people who want to use Gnus + Org-mode in optimal way. Best wishes, Jo. 2014-07-15 16:11 GMT+02:00 Alan Schmitt alan.schm...@polytechnique.org: On 2014-07-15

Re: [O] Babel : python generate org source block with an extra comma before * characters

2014-07-15 Thread Roland DONAT
Thorsten Jolitz tjolitz at gmail.com writes: Roland DONAT roland.donat at gmail.com writes: To do so, I tried to use de drawer option. It gives me the good result with a drawer but then when I export my org buffer to latex, the drawers :RESULTS: is also exported which is not cool...

[O] :RESULTS: drawer exported in LaTeX

2014-07-15 Thread Roland DONAT
Dear Orgmode community, I have this piece of python code that generate Orgmode text : #+NAME: test #+HEADER: :session test1 #+HEADER: :results value drawer #+BEGIN_SRC python a = ** H1\nblabla\n** H2\nbloblo a #+END_SRC #+RESULTS: test :RESULTS: ** H1 blabla ** H2 bloblo :END: But when I

Re: [O] Excluding habits from Diary?

2014-07-15 Thread Aric Gregson
Aric Gregson aorc...@mac.com writes: The main improvement for me would be to repress the introduction of habits into the diary output. I have not been able to accomplish this thus far, and am unsure of how I might go about trying to do so. The way I have worked around this is to set the

Re: [O] :RESULTS: drawer exported in LaTeX

2014-07-15 Thread Nick Dokos
Roland DONAT roland.do...@gmail.com writes: Dear Orgmode community, I have this piece of python code that generate Orgmode text : #+NAME: test #+HEADER: :session test1 #+HEADER: :results value drawer #+BEGIN_SRC python a = ** H1\nblabla\n** H2\nbloblo a #+END_SRC #+RESULTS: test

Re: [O] :RESULTS: drawer exported in LaTeX

2014-07-15 Thread Roland DONAT
Nick Dokos ndokos at gmail.com writes: Roland DONAT roland.donat at gmail.com writes: Dear Orgmode community, I have this piece of python code that generate Orgmode text : #+NAME: test #+HEADER: :session test1 #+HEADER: :results value drawer #+BEGIN_SRC python a = **

[O] random weekly event

2014-07-15 Thread Ivan Kanis
Hi, I need to have org agenda (and then appt) manage an event once a week. The catch is that is should happen at a random day and hour. My thinking is that populating programmatically a year entry is probably the sanest way to go about it. Has anyone else done it? Ivan -- Repeated reboots of

Re: [O] Problem with org-mode after upgradiing to org 8

2014-07-15 Thread Sean O'Halpin
Hi, This might be something to do with the order in which package initialization and the loading of your init.el file happen. I use the following alias to put my local org-mode git repo paths ahead of anything emacs does on launch (in startup.el or site-start.el, etc.): : alias

[O] Scheduled tasks: total time since last DONE

2014-07-15 Thread Fletcher Charest
Dear all, I'm sorry if this is a common question but I had trouble finding the right keywords. I am a little puzzled by the way scheduled tasks work. I will give an example. Let's have this task: * TODO Clean the kitchen SCHEDULED: 2014-07-20 jeu. .+1w If I'm lazy and don't do it for one whole

Re: [O] proposal to make C-c C-c not remove latex overlays

2014-07-15 Thread John Kitchin
I actually love C-c C-c to run code blocks! Maybe I should just bind it to f5 or something, I am just so used to C-cC-c now! Grant Rettke g...@wisdomandwonder.com writes: On Mon, Jul 14, 2014 at 7:33 PM, Aaron Ecay aarone...@gmail.com wrote: The first is to use the C-c C-v C-e binding to

Re: [O] proposal to make C-c C-c not remove latex overlays

2014-07-15 Thread John Kitchin
Aaron Ecay aarone...@gmail.com writes: Thanks for the advice idea, that is a nice one. It doesn't work for me like this though: #+BEGIN_SRC emacs-lisp (defadvice org-ctrl-c-ctrl-c (around latex-overlays) ignore latex overlays in C-cC-c (let ((org-latex-fragment-image-overlays nil))

Re: [O] random weekly event

2014-07-15 Thread Thorsten Jolitz
Ivan Kanis i...@kanis.fr writes: Hi, I need to have org agenda (and then appt) manage an event once a week. The catch is that is should happen at a random day and hour. My thinking is that populating programmatically a year entry is probably the sanest way to go about it. Has anyone else

Re: [O] random weekly event

2014-07-15 Thread Thorsten Jolitz
Thorsten Jolitz tjol...@gmail.com writes: Ivan Kanis i...@kanis.fr writes: #+begin_src emacs-lisp (defun tj/return-random-timestamp-this-week () Insert random timestamp for this week. (interactive) (let* ((cal-info (decode-time (current-time))) (dow (nth 6 cal-info))

Re: [O] random weekly event

2014-07-15 Thread Thorsten Jolitz
Thorsten Jolitz tjol...@gmail.com writes: ups, should be probably rather this: , | (random-day (+ day (1+ (random (- 7 dow) ` grrr ... (- 6 dow) of course -- cheers, Thorsten

Re: [O] proposal to make C-c C-c not remove latex overlays

2014-07-15 Thread Nick Dokos
John Kitchin jkitc...@andrew.cmu.edu writes: Aaron Ecay aarone...@gmail.com writes: Thanks for the advice idea, that is a nice one. It doesn't work for me like this though: #+BEGIN_SRC emacs-lisp (defadvice org-ctrl-c-ctrl-c (around latex-overlays) ignore latex overlays in C-cC-c

Re: [O] proposal to make C-c C-c not remove latex overlays

2014-07-15 Thread Grant Rettke
C-c C-v C-e might seem like a lot but it nice to have control and be sure when code is getting evaluated. That said, I do have a more obvious one using super which is indeed, super: (local-set-key (kbd s-t) 'org-babel-tangle) (local-set-key (kbd s-e) 'org-babel-execute-maybe) Grant Rettke | ACM,

Re: [O] emails written in Org Mode

2014-07-15 Thread Eric Abrahamsen
Joseph Vidal-Rosset joseph.vidal.ros...@gmail.com writes: Hello, This is very interesting indeed. But is there somewhere a good tutorial to read or video to see ? It would be helpful for people who want to use Gnus + Org-mode in optimal way. Someone asked me about a screencast recently,

Re: [O] emails written in Org Mode

2014-07-15 Thread Eric Abrahamsen
Joseph Vidal-Rosset joseph.vidal.ros...@gmail.com writes: Hello, This is very interesting indeed. But is there somewhere a good tutorial to read or video to see ? It would be helpful for people who want to use Gnus + Org-mode in optimal way. Someone asked me about a screencast recently,