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

2014-05-03 Thread Igor Sosa Mayor
Rafael 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 is a funct

Re: [O] [RFC] Rewrite indentation functions

2014-05-03 Thread Eric Abrahamsen
Nicolas Goaziou writes: > Hello, > > Eric Abrahamsen 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

Re: [O] [RFC] Rewrite indentation functions

2014-05-03 Thread Eric Abrahamsen
Nicolas Goaziou writes: > Hello, > > Eric Abrahamsen 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

Re: [O] [RFC] Rewrite indentation functions

2014-05-03 Thread Eric Abrahamsen
Nicolas Goaziou writes: > Hello, > > Eric Abrahamsen 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

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 contr

[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 org-eu

[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

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 necessar

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 fil

Re: [O] Color entries according to assigned priority

2014-05-03 Thread Uwe Ziegenhagen
Sebastien Vauban 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/msg00

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_

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

2014-05-03 Thread Thomas S. Dye
Aloha Sharon, Sharon Kimble 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: http://orgmode.org/worg/

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

2014-05-03 Thread Sharon Kimble
Martin Schöön 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: Martin Schöön > > T

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 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 correct URI

[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] First attempt at exporting to PDF.

2014-05-03 Thread Nick Dokos
Sharon Kimble 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; coding:utf-8 -*- > #

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

[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; mo

Re: [O] :mkdirp without path specifier

2014-05-03 Thread R. Michael Weylandt
On Sat, May 3, 2014 at 4:19 AM, Achim Gratz 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" >> -

Re: [O] [RFC] Rewrite indentation functions

2014-05-03 Thread Nicolas Goaziou
Hello, Eric Abrahamsen 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: >> >> :EXPORT_AUT

Re: [O] loading all agenda files at startup

2014-05-03 Thread Eric Abrahamsen
Alexander Baier writes: > On 2014-04-30 10:44 Eric Abrahamsen wrote: >> Daimrod writes: >> >>> Eric Abrahamsen writes: >>> >>> Hi Eric, >>> I've got a few top-level user commands, related to org, that load at startup. Specifically org-agenda and org-ido-switchb are bound to keys

Re: [O] Heading vs Headline

2014-05-03 Thread Eric Abrahamsen
Sebastien Vauban 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 subtle nuance? >

Re: [O] [RFC] Rewrite indentation functions

2014-05-03 Thread Eric Abrahamsen
Eric Abrahamsen writes: > Nicolas Goaziou writes: > >> Hello, >> >> Eric Abrahamsen 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-

Re: [O] [RFC] Rewrite indentation functions

2014-05-03 Thread Eric Abrahamsen
Nicolas Goaziou writes: > Hello, > > Eric Abrahamsen 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. Otherwise I'd say >> let it drop and

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

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