[O] Putting a todo item to the end of this level

2014-10-12 Thread Uwe Ziegenhagen
Hello, how can I move a specific TODO item to the end of the level it currently sits? Example a) before the command was executed * TODO Level 1 ** TODO something to do a ** DONE something to do b ** TODO something to do c ** TODO something to do d * TODO Level 1 again b) after the command was

Re: [O] move org line to next superior level

2014-05-29 Thread Uwe Ziegenhagen
Eric Abrahamsen eric at ericabrahamsen.net writes: Thorsten Jolitz tjolitz at gmail.com writes: Isn't it a feature of Org-mode that tasks can be added anywhere without giving a thought in the agenda files, letting the agenda itself sort them by date? Just changing the timestamp from

Re: [O] move org line to next superior level

2014-05-29 Thread Uwe Ziegenhagen
Thorsten Jolitz tjolitz at gmail.com writes: #+begin_src emacs-lisp (defun tj/move-entry-to-next-day () Move entry at point to next parent and tag it. (unless (org-on-heading-p) (outline-previous-heading)) (org-mark-subtree) (kill-region (region-beginning)

[O] move org line to next superior level

2014-05-28 Thread Uwe Ziegenhagen
Hi everyone, is there a way to move a specific org mode item across its superior level via shortcut? In the following example I'd like to move the line via shortcut below the '' line. * aaa ** TODO * bbb ** TODO As addon it would be cool to flag this moved line with e.g.

Re: [O] Color entries according to assigned priority

2014-05-07 Thread Uwe Ziegenhagen
Alexander Baier lexi.baier at gmail.com writes: On 2014-05-03 22:07 Uwe Ziegenhagen wrote: I copied and pasted the given code, however I do not see any change. I'll try my luck again tomorrow and will get back to you. Just to be sure, did you eval the pasted code? And restarting org

Re: [O] Color entries according to assigned priority

2014-05-03 Thread Uwe Ziegenhagen
Sebastien Vauban sva-news@... writes: Uwe Ziegenhagen wrote: is it possible to color the different entries in an org file according to the priority assigned to them? See color header based on priority/tags rather than level on http://lists.gnu.org/archive/html/emacs-orgmode/2014-01

[O] Color entries according to assigned priority

2014-05-02 Thread Uwe Ziegenhagen
Hello, is it possible to color the different entries in an org file according to the priority assigned to them? I'd like to have #a items in black and #b, #c and non-prioritized items in gray tones. Uwe

Re: [O] Exporting to LaTeX Beamer

2014-04-25 Thread Uwe Ziegenhagen
Eric S Fraga e.fraga at ucl.ac.uk writes: On Friday, 25 Apr 2014 at 04:38, Uwe Ziegenhagen wrote: Hi, I am trying to export an org file to individual Beamer frames but fail as Org mode exports the sections, but not the frames. Use H:2 option instead of H:3 (in the #+OPTIONS line

Re: [O] Exporting to LaTeX Beamer

2014-04-25 Thread Uwe Ziegenhagen
How exactly are you trying to export? Your output looks like a plain latex export (M-x org-export-dispatch RET l p), not beamer (... l P)? Note difference in case (p versus P) and similar for export to latex code alone (l or b) and for opening the PDF automatically (o versus O). Got it!

[O] Exporting to LaTeX Beamer

2014-04-24 Thread Uwe Ziegenhagen
Hi, I am trying to export an org file to individual Beamer frames but fail as Org mode exports the sections, but not the frames. I use the following example org file (as given by http://orgmode.org/worg/exporters/beamer/tutorial.html) ## #+TITLE: Writing

[O] Finer control over LaTeX export

2013-12-31 Thread Uwe Ziegenhagen
Hi everyone, I have short parts of Python code in my org file: #+begin_src python :results value def foo(x): if x0: return x+1 else: return x-1 return foo(590) #+end_src #+RESULTS: : 591 #+begin_src python :results value return 1+1 #+end_src #+RESULTS: : 2 #+begin_src python

[O] Getting custom LaTeX exports to work

2013-12-25 Thread Uwe Ziegenhagen
Hi everyone, I am trying to get custom LaTeX exports to work. I installed the latest version of Emacs (for Windows) and org mode today and have the following in my .emacs: (require 'ox-html) (require 'ox-latex) (require 'ox-ascii) ;; now let's add a few custom class export templates

Re: [O] Getting custom LaTeX exports to work

2013-12-25 Thread Uwe Ziegenhagen
Thomas S. Dye tsd at tsdye.com writes: Hi Uwe, Uwe Ziegenhagen ziegenhagen at gmail.com writes: You've named it `koma-artikel', not `koma-article'. hth, Tom OMG, that did the trick! Thanks, Uwe