Re: [O] Color entries according to assigned priority

2014-05-03 Thread Sebastien Vauban
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/msg00625.html. I'd like to have #a items in

Re: [O] Exporting org-mode source

2014-05-03 Thread Sebastien Vauban
Vikas Rawal wrote: I want to export a block of org-mode source code in a tutorial I am writing. I have tried variations of the following. But nothing seems to give me org-mode code in the exported pdf. #+BEGIN_SRC org :results code replace org-mode code here #+END_SRC What is the right

Re: [O] [RFC] Rewrite indentation functions

2014-05-03 Thread Eric Abrahamsen
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Eric Abrahamsen e...@ericabrahamsen.net writes: Wish I was competent to actually review this, but... In lieu of that, I'd be happy to run it and report errors. If you think a separate testing branch is warranted, that might be an idea.

Re: [O] :mkdirp without path specifier

2014-05-03 Thread Achim Gratz
R. Michael Weylandt writes: ;; Possibly create the parent directories for file. (when (let ((m (funcall get-spec :mkdirp))) (and m (not (string= m no - (make-directory (file-name-directory file-name)

Re: [O] [RFC] Rewrite indentation functions

2014-05-03 Thread Eric Abrahamsen
Eric Abrahamsen e...@ericabrahamsen.net writes: Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Eric Abrahamsen e...@ericabrahamsen.net writes: Wish I was competent to actually review this, but... In lieu of that, I'd be happy to run it and report errors. If you think a separate

Re: [O] Heading vs Headline

2014-05-03 Thread Eric Abrahamsen
Sebastien Vauban sva-n...@mygooglest.com writes: Hello, Particularly in the Org Beamer documentation, headlines seems the most used term while there is a tag ignoreheading... I have the impression that both terms (heading and headline) are synonyms. Though, is this true, or is there some

Re: [O] loading all agenda files at startup

2014-05-03 Thread Eric Abrahamsen
Alexander Baier lexi.ba...@gmail.com writes: On 2014-04-30 10:44 Eric Abrahamsen wrote: Daimrod daim...@gmail.com writes: Eric Abrahamsen e...@ericabrahamsen.net writes: Hi Eric, I've got a few top-level user commands, related to org, that load at startup. Specifically org-agenda and

Re: [O] [RFC] Rewrite indentation functions

2014-05-03 Thread Nicolas Goaziou
Hello, Eric Abrahamsen e...@ericabrahamsen.net writes: Right now I'm seeing breakage with `org-set-property' -- this only happens on the indentation patches branch. Adding an EXPORT_AUTHOR property with that command, value of asdfadsf, gives me this: * Test Heading :PROPERTIES:

Re: [O] :mkdirp without path specifier

2014-05-03 Thread R. Michael Weylandt
On Sat, May 3, 2014 at 4:19 AM, Achim Gratz strom...@nexgo.de wrote: R. Michael Weylandt writes: ;; Possibly create the parent directories for file. (when (let ((m (funcall get-spec :mkdirp))) (and m (not (string= m no

[O] First attempt at exporting to PDF.

2014-05-03 Thread Sharon Kimble
I've spent most of the day writing something in org-mode and then exporting it to PDF. But, it doesn't come out as I wanted, presumably because I've not got the org-mode/latex headers right, but this is what I have - --8---cut here---start-8--- -*- Mode:org;

Re: [O] First attempt at exporting to PDF.

2014-05-03 Thread Martin Schöön
Here is how my first org-mode file for export to pdf using LaTeX starts: #+LATEX_CLASS: article #+LATEX_CLASS_OPTIONS: [a4paper] #+OPTIONS: toc:nil #+OPTIONS: ^:{} #+TITLE: Ett första försök att blanda in LaTeX i en Org-mod fil #+AUTHOR: Martin Schöön The first two rows should be self explaining

Re: [O] First attempt at exporting to PDF.

2014-05-03 Thread Nick Dokos
Sharon Kimble boudic...@skimble.plus.com writes: I've spent most of the day writing something in org-mode and then exporting it to PDF. But, it doesn't come out as I wanted, presumably because I've not got the org-mode/latex headers right, but this is what I have - -*- Mode:org; mode:reftex;

[O] [PATCH] orgguide.texi: Replace spaces with tabs in two menu lines to be consistent with all other menu lines.

2014-05-03 Thread Richard Kim
Why this trivial patch? As I make changes to orgguide.texi, I may invoke texinfo-all-menus-update or texinfo-every-node-update elisp commands. When I do the spaces are replaced with tabs. I would rather not have to deal with these changes when I view git diff. Besides I think using white spaces

Re: [O] [BUG] Cannot export a raw link

2014-05-03 Thread Michael Brand
Hi Nicolas On Wed, Apr 16, 2014 at 9:15 AM, Nicolas Goaziou n.goaz...@gmail.com wrote: I suggest the following for the 8.2.6 release: - revert the whole patches line - at the parser level - if scheme is not file or derived (e.g., file+sys or docview), assume PATH is a

Re: [O] First attempt at exporting to PDF.

2014-05-03 Thread Sharon Kimble
Martin Schöön martin.sch...@gmail.com writes: Here is how my first org-mode file for export to pdf using LaTeX starts: #+LATEX_CLASS: article #+LATEX_CLASS_OPTIONS: [a4paper] #+OPTIONS: toc:nil #+OPTIONS: ^:{} #+TITLE: Ett första försök att blanda in LaTeX i en Org-mod fil #+AUTHOR:

Re: [O] First attempt at exporting to PDF.

2014-05-03 Thread Thomas S. Dye
Aloha Sharon, Sharon Kimble boudic...@skimble.plus.com writes: I have never tried what you are trying to do with references so someone else must step in and help you there. Just hope someone steps up to the plate? This was written for the old exporter, but it might be useful to you:

Re: [O] Heading vs Headline

2014-05-03 Thread Kyle Meyer
Sebastien Vauban wrote: [...] Particularly in the Org Beamer documentation, headlines seems the most used term while there is a tag ignoreheading... Function names in org.el tend to use heading. #+begin_src sh grep defun org.el | grep heading | wc -l #+end_src #+RESULTS: : 28 #+begin_src

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

Re: [O] First attempt at exporting to PDF.

2014-05-03 Thread John Kitchin
you should be able to get references with \cite{key1} and \cite{key2}. where key1 and key2 are bibtex keys in a bibtex file called references.bib. you need at the end of your org-file where you want the bibliography to appear: \bibliographystyle{unsrt} \bibliography{references} In your init

Re: [O] Color entries according to assigned priority

2014-05-03 Thread Alexander Baier
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-mode (M-x fundamental-mode M-x org-mode) could be

[O] Seeking advice on a worg contribution

2014-05-03 Thread James Harkins
I finally finished a draft (attached, and not carefully proofread yet) of a new worg page to outline what I had to do for a big Beamer publishing project. Could somebody look it over and advise of any formatting problems? I guess it should be basically OK; I copied the standard worg header, and

[O] Schedule for the World Cup in org format

2014-05-03 Thread Rafael
Hi all, Following https://github.com/djcb/org-euro2012 as a template, I have produced a schedule for the upcoming world cup in org format, which can be obtained from https://github.com/rvf0068/org-wc2014 The times are Mexico City time, which is GMT-5. There is a function I copied from the

Re: [O] (org-insert-headline '(4)) should insert new headline before point

2014-05-03 Thread Leonard Randall
Hi Bastien, Just to follow up on the error, reverting commit 0ca4092 fixes the bug that I mentioned in my last email and reverting the fourth hunk of commit b8c85a1 should fix the bug that you tried to fix with that commit. Carsten had added an 'unless (bolp)' condition to the function that

Re: [O] [RFC] Rewrite indentation functions

2014-05-03 Thread Eric Abrahamsen
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Eric Abrahamsen e...@ericabrahamsen.net writes: Right now I'm seeing breakage with `org-set-property' -- this only happens on the indentation patches branch. Adding an EXPORT_AUTHOR property with that command, value of asdfadsf, gives me

Re: [O] [RFC] Rewrite indentation functions

2014-05-03 Thread Eric Abrahamsen
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Eric Abrahamsen e...@ericabrahamsen.net writes: Right now I'm seeing breakage with `org-set-property' -- this only happens on the indentation patches branch. Adding an EXPORT_AUTHOR property with that command, value of asdfadsf, gives me

Re: [O] [RFC] Rewrite indentation functions

2014-05-03 Thread Eric Abrahamsen
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Eric Abrahamsen e...@ericabrahamsen.net writes: Right now I'm seeing breakage with `org-set-property' -- this only happens on the indentation patches branch. Adding an EXPORT_AUTHOR property with that command, value of asdfadsf, gives me

Re: [O] Schedule for the World Cup in org format

2014-05-03 Thread Igor Sosa Mayor
Rafael rvf0...@gmail.com writes: Hi all, Following https://github.com/djcb/org-euro2012 as a template, I have produced a schedule for the upcoming world cup in org format, which can be obtained from https://github.com/rvf0068/org-wc2014 The times are Mexico City time, which is GMT-5. There