Re: [O] cannot export to beamer.

2018-12-16 Thread Eric S Fraga
Can you be explicit about how you are exporting to beamer and what version of org you are using? What happens if you start emacs with -Q? For me, all I require is to have (require 'ox-beamer) and then I can export with "C-c C-e l O", having started emacs with -Q. -- Eric S Fraga via Emacs

Re: [O] cannot export to beamer.

2018-12-16 Thread Ken Mankoff
On 2018-12-16 at 10:16 -0800, Uwe Brauer wrote: > So the problem is in my init file and I am quite sure that it has to > do with the following lines in my custom- file > > '(org-latex-classes What is the full line here? Is this a "setq"? I have: (add-to-list 'org-latex-classes

Re: [O] cannot export to beamer.

2018-12-16 Thread Uwe Brauer
>>> "Eric" == Eric S Fraga writes: > Can you be explicit about how you are exporting to beamer Either C-c C-e l l Or C-c C-e l o > and what version of org you are using? The latest master version commit adec504d5ba3f2089cb689ce5a59692a8ebf6735 > What happens if you start

Re: [O] cannot export to beamer.

2018-12-16 Thread Tim Cross
Just a shot in the dark here . You mentioned you used custom to modify the org-latex-classes variable. Does the code in the custom 'block' of your init file have beamer as one of the classes? My suspicion is that when you added your exam class, for some reason, beamer had not been loaded

Re: [O] cannot export to beamer.

2018-12-16 Thread Uwe Brauer
>>> "Tim" == Tim Cross writes: > Just a shot in the dark here . > You mentioned you used custom to modify the org-latex-classes > variable. Does the code in the custom 'block' of your init file have > beamer as one of the classes? No it does not and this turns out a problem,

[O] [PATCH] Suggestion to self-link headlines exported to HTML

2018-12-16 Thread Toon Claes
Hi, Recently I wrote a blog post on making headlines clickable when Org mode is exported to HTML: https://writepermission.com/org-blogging-clickable-headlines.html With this mail, I'd like to suggest a change to bring this feature to the Org mode core. It's my first contribution to Org mode,

Re: [O] Org Mode - Organize Your Life In Plain Text!

2018-12-16 Thread Bernt Hansen
David Masterson writes: > I've been reading Bernt Hansen's excellent paper on setting up Org-Mode, > but I noticed that it is rather dated and was wondering if Bernt is > watching and plans to update the paper. In particular, the last version > of the paper on his website has a couple of things

Re: [O] Org Mode - Organize Your Life In Plain Text!

2018-12-16 Thread David Masterson
Bernt Hansen writes: > Hi David, > > Sorry my website on org-mode is stale and I don't currently have time to > update it. I stopped updating it in 2015 after changing jobs and moving > to the windows platform (at work). My main issue is lack of free time > to spend on this project. > > The

Re: [O] cannot export to beamer.

2018-12-16 Thread Tim Cross
I suspect that the recent changes in how Emacs runs initialisation may well expose a few edge cases for the customise interface. The custimise interface is fairly basic and makes a few assumptions which may not hold once you start altering the order of initialisation and package loading. While

Re: [O] cannot export to beamer.

2018-12-16 Thread Eric S Fraga
On Sunday, 16 Dec 2018 at 19:16, Uwe Brauer wrote: "Eric" == Eric S Fraga writes: > >> Can you be explicit about how you are exporting to beamer > > Either > > C-c C-e l l > > Or > > C-c C-e l o And here is the problem. These are not the export directives to use for beamer. Use C-c

Re: [O] cannot export to beamer.

2018-12-16 Thread Uwe Brauer
>>> "Ken" == Ken Mankoff writes: > On 2018-12-16 at 10:16 -0800, Uwe Brauer wrote: >> So the problem is in my init file and I am quite sure that it has to >> do with the following lines in my custom- file >> >> '(org-latex-classes > What is the full line here? Is this a